Enum AbstractTypeTests.Type
- java.lang.Object
-
- java.lang.Enum<AbstractTypeTests.Type>
-
- org.eclipse.epsilon.emc.simulink.test.util.AbstractTypeTests.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractTypeTests.Type>
- Enclosing class:
- AbstractTypeTests
protected static enum AbstractTypeTests.Type extends Enum<AbstractTypeTests.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
ALL_OF_KIND
ALL_OF_TYPE
IS_KIND_OF
IS_TYPE_OF
TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
eol(Object... args)
String
eolNotEmptyConstructor(Object... args)
static AbstractTypeTests.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractTypeTests.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final AbstractTypeTests.Type TYPE
-
IS_KIND_OF
public static final AbstractTypeTests.Type IS_KIND_OF
-
IS_TYPE_OF
public static final AbstractTypeTests.Type IS_TYPE_OF
-
ALL
public static final AbstractTypeTests.Type ALL
-
ALL_OF_TYPE
public static final AbstractTypeTests.Type ALL_OF_TYPE
-
ALL_OF_KIND
public static final AbstractTypeTests.Type ALL_OF_KIND
-
-
Method Detail
-
values
public static AbstractTypeTests.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractTypeTests.Type c : AbstractTypeTests.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractTypeTests.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-