public enum QueryOperator extends Enum<QueryOperator>
Enum Constant and Description |
---|
BETWEEN |
CONTAINS_TOKEN |
EQ |
GE |
GT |
IN |
INTERSECTS |
IS_NULL |
LE |
LT |
NE |
NOT_NULL |
NOT_REGEX |
NOT_SUPPORTED |
REGEX |
RELATION |
WITHIN |
Modifier and Type | Method and Description |
---|---|
String |
getOperatorString() |
static QueryOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOperator EQ
public static final QueryOperator NE
public static final QueryOperator GT
public static final QueryOperator GE
public static final QueryOperator LT
public static final QueryOperator LE
public static final QueryOperator IS_NULL
public static final QueryOperator NOT_NULL
public static final QueryOperator REGEX
public static final QueryOperator CONTAINS_TOKEN
public static final QueryOperator NOT_REGEX
public static final QueryOperator IN
public static final QueryOperator RELATION
public static final QueryOperator INTERSECTS
public static final QueryOperator WITHIN
public static final QueryOperator NOT_SUPPORTED
public static final QueryOperator BETWEEN
public static QueryOperator[] values()
for (QueryOperator c : QueryOperator.values()) System.out.println(c);
public static QueryOperator 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 nullpublic String getOperatorString()
Copyright © GigaSpaces.