Enum Class SingleComparisonNode.Type
java.lang.Object
java.lang.Enum<SingleComparisonNode.Type>
org.eclipse.ditto.rql.model.predicates.ast.SingleComparisonNode.Type
- All Implemented Interfaces:
Serializable,Comparable<SingleComparisonNode.Type>,Constable
- Enclosing class:
- SingleComparisonNode
Defines the possible types that a
SingleComparisonNode can have.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents an equals comparison.Represents a greater than or equals comparison.Represents a greater than comparison.Represents a lower than or equals comparison.Represents a lower than or equals comparison.Represents a lower than comparison.Represents a not equal comparison. -
Method Summary
Modifier and TypeMethodDescriptiongetName()static SingleComparisonNode.TypeReturns the enum constant of this class with the specified name.static SingleComparisonNode.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQ
Represents an equals comparison. -
NE
Represents a not equal comparison. -
GT
Represents a greater than comparison. -
GE
Represents a greater than or equals comparison. -
LT
Represents a lower than comparison. -
LE
Represents a lower than or equals comparison. -
LIKE
Represents a lower than or equals comparison.
-
-
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
-
getName
-