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