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