Package com.sas.lsaf.query
Enum Class Comparison.Operator
- All Implemented Interfaces:
Serializable,Comparable<Comparison.Operator>,Constable
- Enclosing class:
Comparison
The method with which to evaluate data that is compared to a value.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEqual to.Greater than.Greater than or equal to.Less than.Less than or equal to.Equates to true if the value matches a pattern.Not equal to.Equates to true if the value does not matches the pattern. -
Method Summary
Modifier and TypeMethodDescriptionstatic Comparison.OperatorReturns the enum constant of this class with the specified name.static Comparison.Operator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUAL
Equal to. -
NOT_EQUAL
Not equal to. -
LESS_THAN
Less than. -
GREATER_THAN
Greater than. -
LESS_THAN_OR_EQUAL
Less than or equal to. -
GREATER_THAN_OR_EQUAL
Greater than or equal to. -
LIKE
Equates to true if the value matches a pattern. Wildcards are supported with this operator. -
NOT_LIKE
Equates to true if the value does not matches the pattern. Wildcards are supported with this operator.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-