public static enum ResourceCondition.OperatorType extends java.lang.Enum<ResourceCondition.OperatorType>
| Enum Constant and Description |
|---|
EQUAL_TO
To apply Mathematical operator
"equals to" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
GREATER_THAN
To apply Mathematical operator
"greater than" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
GREATER_THAN_EQUAL_TO
To apply Mathematical operator
"greater than or equals to" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
LESS_THAN
To apply Mathematical operator
"is less than" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
LESS_THAN_EQUAL_TO
To apply Mathematical operator
"is less than or equals to" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
NOT_EQUAL_TO
To apply Mathematical operator
"not equals" between
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value. |
| 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
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.public static final ResourceCondition.OperatorType NOT_EQUAL_TO
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.public static final ResourceCondition.OperatorType GREATER_THAN
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.public static final ResourceCondition.OperatorType GREATER_THAN_EQUAL_TO
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.public static final ResourceCondition.OperatorType LESS_THAN
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.public static final ResourceCondition.OperatorType LESS_THAN_EQUAL_TO
ResourceCondition.thresholdAttributeValue
and ResourceCondition.getAttribute()'s current value.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