protected static enum BaseQuery.Comparison extends java.lang.Enum<BaseQuery.Comparison>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static BaseQuery.Comparison |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaseQuery.Comparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseQuery.Comparison EQUAL
public static final BaseQuery.Comparison LESS_THAN
public static final BaseQuery.Comparison LESS_THAN_OR_EQUAL
public static final BaseQuery.Comparison GREATER_THAN
public static final BaseQuery.Comparison GREATER_THAN_OR_EQUAL
public static BaseQuery.Comparison[] values()
for (BaseQuery.Comparison c : BaseQuery.Comparison.values()) System.out.println(c);
public static BaseQuery.Comparison 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