public static enum KeyValueQueryPart.ComparisonOperator extends java.lang.Enum<KeyValueQueryPart.ComparisonOperator>
Enum Constant and Description |
---|
EQ The values must equal |
GT The value of this key-value pair must be greater than the other one |
GTE The value of this key-value pair must be greater than or equal to the other one |
LT The value of this key-value pair must be less than the other one |
LTE The value of this key-value pair must be less than or equal to the other one |
Modifier and Type | Method and Description |
---|---|
static KeyValueQueryPart.ComparisonOperator | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static KeyValueQueryPart.ComparisonOperator[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final KeyValueQueryPart.ComparisonOperator EQ
public static final KeyValueQueryPart.ComparisonOperator GT
public static final KeyValueQueryPart.ComparisonOperator GTE
public static final KeyValueQueryPart.ComparisonOperator LT
public static final KeyValueQueryPart.ComparisonOperator LTE
public static KeyValueQueryPart.ComparisonOperator[] values()
for (KeyValueQueryPart.ComparisonOperator c : KeyValueQueryPart.ComparisonOperator.values()) System.out.println(c);
public static KeyValueQueryPart.ComparisonOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null