ConditionOperator
Comparator describes the type of comparison.
enum ConditionOperator {
OPERATOR_EQUALS
OPERATOR_GREATER_THAN
OPERATOR_GREATER_THAN_OR_EQUAL
OPERATOR_LESS_THAN
OPERATOR_LESS_THAN_OR_EQUAL
}
Values
ConditionOperator.OPERATOR_EQUALS
Verify if the property values are strictly equal or not.
ConditionOperator.OPERATOR_GREATER_THAN
Verify if the data source data value is greater than the Condition value.
ConditionOperator.OPERATOR_GREATER_THAN_OR_EQUAL
Verify if the data source data value is greater than or equal to the Condition value.
ConditionOperator.OPERATOR_LESS_THAN
Verify if the data source data value is less than the Condition value.
ConditionOperator.OPERATOR_LESS_THAN_OR_EQUAL
Verify if the oracle data value is less or equal to than the Condition value.
Member of
Condition
object