public static enum KeyValueQueryPart.ComparisonOperator extends Enum<KeyValueQueryPart.ComparisonOperator>
| Enum Constant and Description | 
|---|
EQThe values must equal  | 
GTThe value of this key-value pair must be greater than the other one  | 
GTEThe value of this key-value pair must be greater than or equal to the other one  | 
LTThe value of this key-value pair must be less than the other one  | 
LTEThe 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null