Enum ExpressionIdentifier.NAME
- java.lang.Object
-
- java.lang.Enum<ExpressionIdentifier.NAME>
-
- org.drools.scenariosimulation.api.model.ExpressionIdentifier.NAME
-
- All Implemented Interfaces:
Serializable,Comparable<ExpressionIdentifier.NAME>
- Enclosing class:
- ExpressionIdentifier
public static enum ExpressionIdentifier.NAME extends Enum<ExpressionIdentifier.NAME>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DescriptionExpectedGivenIndexOther
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExpressionIdentifier.NAMEvalueOf(String name)Returns the enum constant of this type with the specified name.static ExpressionIdentifier.NAME[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Description
public static final ExpressionIdentifier.NAME Description
-
Expected
public static final ExpressionIdentifier.NAME Expected
-
Given
public static final ExpressionIdentifier.NAME Given
-
Index
public static final ExpressionIdentifier.NAME Index
-
Other
public static final ExpressionIdentifier.NAME Other
-
-
Method Detail
-
values
public static ExpressionIdentifier.NAME[] 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 (ExpressionIdentifier.NAME c : ExpressionIdentifier.NAME.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionIdentifier.NAME 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
-
-