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