public enum QueryOperator extends java.lang.Enum<QueryOperator>
| Enum Constant and Description |
|---|
ALL |
ELEM_MATCH |
EQUAL |
EXISTS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IN |
LESS_THAN |
LESS_THAN_OR_EQUAL |
MOD |
NOT |
NOT_EQUALS |
NOT_IN |
SIZE |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
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 IN
public static final QueryOperator NOT_IN
public static final QueryOperator NOT
public static final QueryOperator NOT_EQUALS
public static final QueryOperator EQUAL
public static final QueryOperator EXISTS
public static final QueryOperator GREATER_THAN_OR_EQUAL
public static final QueryOperator GREATER_THAN
public static final QueryOperator LESS_THAN_OR_EQUAL
public static final QueryOperator LESS_THAN
public static final QueryOperator MOD
public static final QueryOperator SIZE
public static final QueryOperator ALL
public static final QueryOperator ELEM_MATCH
public static final QueryOperator TYPE
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 nullpublic java.lang.String getValue()