Package com.adobe.granite.taskmanagement
Enum ComparisonOperator
- All Implemented Interfaces:
Serializable,Comparable<ComparisonOperator>,java.lang.constant.Constable
ComparisonOperator is used in the construction of Filter expressions.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA value that represents the Begins With operator.A value that represents the Contains operator.A value that represents the Ends With operator.A value that represents the Equals operator.A value that represents the Greater Than operator.A value that represents the Greater Than Or Equals operator.A value that represents the In list operator.A value that represents the Less Than operator.A value that represents the Less Than Or Equals operator.A value that represents the Not Equals operator. -
Method Summary
Modifier and TypeMethodDescriptionstatic ComparisonOperatorReturns the enum constant of this type with the specified name.static ComparisonOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EQUALS
A value that represents the Equals operator. -
GREATER_THAN
A value that represents the Greater Than operator. -
LESS_THAN
A value that represents the Less Than operator. -
NOT_EQUALS
A value that represents the Not Equals operator. -
GREATER_THAN_EQUALS
A value that represents the Greater Than Or Equals operator. -
LESS_THAN_EQUALS
A value that represents the Less Than Or Equals operator. -
BEGINS_WITH
A value that represents the Begins With operator. -
ENDS_WITH
A value that represents the Ends With operator. -
CONTAINS
A value that represents the Contains operator. -
IN_LIST
A value that represents the In list operator.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-