public static enum DisableCondition.OPERATOR extends Enum<DisableCondition.OPERATOR>
Enum Constant and Description |
---|
EQ
Equals
|
GEQ
Greater or equals
|
GT
Greater than
|
LEQ
Less or equals
|
LT
Less than
|
NEQ
Non equals
|
Modifier and Type | Method and Description |
---|---|
static DisableCondition.OPERATOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisableCondition.OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisableCondition.OPERATOR EQ
public static final DisableCondition.OPERATOR NEQ
public static final DisableCondition.OPERATOR GT
public static final DisableCondition.OPERATOR GEQ
public static final DisableCondition.OPERATOR LEQ
public static final DisableCondition.OPERATOR LT
public static DisableCondition.OPERATOR[] values()
for (DisableCondition.OPERATOR c : DisableCondition.OPERATOR.values()) System.out.println(c);
public static DisableCondition.OPERATOR valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null