public enum InstructionType extends java.lang.Enum<InstructionType>
Enum Constant and Description |
---|
CONTAINS |
DOES_NOT_CONTAIN |
EQUAL |
GREATER_THAN |
GREATER_THAN_EQUAL_TO |
LESS_THAN |
LESS_THAN_EQUAL_TO |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
static InstructionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstructionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstructionType EQUAL
public static final InstructionType GREATER_THAN
public static final InstructionType GREATER_THAN_EQUAL_TO
public static final InstructionType LESS_THAN
public static final InstructionType LESS_THAN_EQUAL_TO
public static final InstructionType NOT_EQUAL
public static final InstructionType CONTAINS
public static final InstructionType DOES_NOT_CONTAIN
public static InstructionType[] values()
for (InstructionType c : InstructionType.values()) System.out.println(c);
public static InstructionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null