Enum Constant and Description |
---|
DECREMENTS |
EQUALS |
GREATER_EQUALS |
GREATER_THAN |
INCREMENTS |
LESS_EQUALS |
LESS_THAN |
Modifier and Type | Method and Description |
---|---|
static OpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpType EQUALS
public static final OpType LESS_THAN
public static final OpType GREATER_THAN
public static final OpType LESS_EQUALS
public static final OpType GREATER_EQUALS
public static final OpType INCREMENTS
public static final OpType DECREMENTS
public static OpType[] values()
for (OpType c : OpType.values()) System.out.println(c);
public static OpType 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