Class Comparisons
java.lang.Object
com.appiancorp.suiteapi.process.analytics2.Comparisons
Defines constants for logical comparisons between values.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic Integer
Operator representing "lies between the given range of values".static final Integer
Operator representing "is equal to the given value".static Integer
Operator representing "is greater than the given value".static final Integer
Operator representing "is greater than or equal to the given value".static final Integer
Operator representing "exists in the given array of values".static final Integer
Operator representing "is less than the given value".static final Integer
Operator representing "is less than or equal to the given value".static final Integer
Operator representing "is a substring of another String".static Integer
Operator representing "does not lie between the given range of values".static Integer
Operator representing "is not equal to the given value".static Integer
Operator representing "does not exist in the given array of values".static Integer
Operator representing "is not a substring of another String". -
Constructor Summary
-
Method Summary
-
Field Details
-
GREATER_THAN
Operator representing "is greater than the given value". -
LESS_THAN
Operator representing "is less than the given value". -
GREATER_THAN_OR_EQUALS
Operator representing "is greater than or equal to the given value". -
LESS_THAN_OR_EQUALS
Operator representing "is less than or equal to the given value". -
EQUAL
Operator representing "is equal to the given value". -
NOT_EQUAL
Operator representing "is not equal to the given value". -
IN
Operator representing "exists in the given array of values". -
NOT_IN
Operator representing "does not exist in the given array of values". -
BETWEEN
Operator representing "lies between the given range of values". -
NOT_BETWEEN
Operator representing "does not lie between the given range of values". -
LIKE
Operator representing "is a substring of another String". Wildcards are allowed in the values being operated on, such that when "*abc*" is operated on, the result will be all Strings containing the substring "abc"; when "abc" is operated on, the result will be all Strings equal to "abc" The comparison is case insensitive. -
NOT_LIKE
Operator representing "is not a substring of another String". Wildcards are allowed in the values being operated on, such that when "*abc*" is operated on, the result will be all Strings not containing the substring "abc"; when "abc" is operated on, the result will be all Strings not equal to "abc" The comparison is case insensitive.
-
-
Constructor Details
-
Comparisons
public Comparisons()
-