Module dev.metaschema.core
Enum ComparisonFunctions.Operator
java.lang.Object
java.lang.Enum<ComparisonFunctions.Operator>
dev.metaschema.core.metapath.function.ComparisonFunctions.Operator
- All Implemented Interfaces:
Serializable,Comparable<ComparisonFunctions.Operator>
- Enclosing class:
- ComparisonFunctions
Comparison operators.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ComparisonFunctions.OperatorReturns the enum constant of this type with the specified name.static ComparisonFunctions.Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQ
An equal comparison. -
NE
A not equal comparison. -
LT
A less than comparison. -
LE
A less than or equal comparison. -
GT
A greater than comparison. -
GE
A greater than or equal comparison.
-
-
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
-