Enum AbstractTypeTests.Collection
- java.lang.Object
-
- java.lang.Enum<AbstractTypeTests.Collection>
-
- org.eclipse.epsilon.emc.simulink.test.util.AbstractTypeTests.Collection
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractTypeTests.Collection>
- Enclosing class:
- AbstractTypeTests
protected static enum AbstractTypeTests.Collection extends Enum<AbstractTypeTests.Collection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
ALL_OF_KIND
ALL_OF_TYPE
COLLECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
collect(Object... args)
String
eol(Object... args)
String
eolEmpty(Object... args)
static AbstractTypeTests.Collection
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractTypeTests.Collection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final AbstractTypeTests.Collection ALL
-
ALL_OF_TYPE
public static final AbstractTypeTests.Collection ALL_OF_TYPE
-
ALL_OF_KIND
public static final AbstractTypeTests.Collection ALL_OF_KIND
-
COLLECT
public static final AbstractTypeTests.Collection COLLECT
-
-
Method Detail
-
values
public static AbstractTypeTests.Collection[] 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.Collection c : AbstractTypeTests.Collection.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.Collection 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
-
-