public enum QueryOperator extends java.lang.Enum<QueryOperator>
Enum Constant and Description |
---|
equals |
greaterThan |
greaterThanOrEquals |
hasPrefix |
lessThan |
lessThanOrEquals |
longestPrefixMatch |
notEquals |
rangeMatch |
Modifier and Type | Method and Description |
---|---|
static QueryOperator |
valueOf(java.lang.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 equals
public static final QueryOperator notEquals
public static final QueryOperator lessThan
public static final QueryOperator lessThanOrEquals
public static final QueryOperator greaterThan
public static final QueryOperator greaterThanOrEquals
public static final QueryOperator rangeMatch
public static final QueryOperator longestPrefixMatch
public static final QueryOperator hasPrefix
public static QueryOperator[] values()
for (QueryOperator c : QueryOperator.values()) System.out.println(c);
public static QueryOperator 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