public enum QueryOperator extends Enum<QueryOperator>
| Enum Constant and Description |
|---|
COMPARATOR_EQ |
COMPARATOR_GT |
COMPARATOR_IN |
COMPARATOR_LT |
COMPARATOR_SPECIAL |
| Modifier and Type | Method and Description |
|---|---|
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 COMPARATOR_GT
public static final QueryOperator COMPARATOR_LT
public static final QueryOperator COMPARATOR_EQ
public static final QueryOperator COMPARATOR_IN
public static final QueryOperator COMPARATOR_SPECIAL
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 nullCopyright © 2010–2017 Henix, henix.fr. All rights reserved.