public enum QueryOperator extends Enum<QueryOperator>
| Modifier and Type | Method and Description |
|---|---|
static QueryOperator |
getOperator(String op) |
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 neq
public static final QueryOperator lt
public static final QueryOperator lte
public static final QueryOperator gt
public static final QueryOperator gte
public static final QueryOperator in
public static final QueryOperator nin
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 static QueryOperator getOperator(String op) throws NotFoundException
NotFoundExceptionCopyright © 2015. All Rights Reserved.