Package owl.cinterface
Enum StateFeatures.Feature.Type
- java.lang.Object
-
- java.lang.Enum<StateFeatures.Feature.Type>
-
- owl.cinterface.StateFeatures.Feature.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<StateFeatures.Feature.Type>
- Enclosing class:
- StateFeatures.Feature
public static enum StateFeatures.Feature.Type extends Enum<StateFeatures.Feature.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERMUTATION
ROUND_ROBIN_COUNTER
TEMPORAL_OPERATORS_PROFILE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StateFeatures.Feature.Type
fromCValue(int value)
int
getCValue()
static StateFeatures.Feature.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static StateFeatures.Feature.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERMUTATION
public static final StateFeatures.Feature.Type PERMUTATION
-
ROUND_ROBIN_COUNTER
public static final StateFeatures.Feature.Type ROUND_ROBIN_COUNTER
-
TEMPORAL_OPERATORS_PROFILE
public static final StateFeatures.Feature.Type TEMPORAL_OPERATORS_PROFILE
-
-
Method Detail
-
values
public static StateFeatures.Feature.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 (StateFeatures.Feature.Type c : StateFeatures.Feature.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 StateFeatures.Feature.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
-
getCValue
public int getCValue()
-
fromCValue
public static StateFeatures.Feature.Type fromCValue(int value)
-
-