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