public static enum Query.Criteria extends Enum<Query.Criteria>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NOT_EQUAL_TO |
Modifier and Type | Method and Description |
---|---|
static Query.Criteria |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Query.Criteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.Criteria EQUALS
public static final Query.Criteria NOT_EQUAL_TO
public static final Query.Criteria GREATER_THAN
public static final Query.Criteria GREATER_THAN_OR_EQUAL_TO
public static final Query.Criteria LESS_THAN
public static final Query.Criteria LESS_THAN_OR_EQUAL_TO
public static Query.Criteria[] values()
for (Query.Criteria c : Query.Criteria.values()) System.out.println(c);
public static Query.Criteria 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 © 2014. All rights reserved.