public static enum SearchQuery.QueryOperator extends java.lang.Enum<SearchQuery.QueryOperator>
| Enum Constant and Description |
|---|
CONTAINS |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
MATCHES |
| Modifier and Type | Method and Description |
|---|---|
static SearchQuery.QueryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchQuery.QueryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchQuery.QueryOperator GREATER_THAN_OR_EQUAL_TO
public static final SearchQuery.QueryOperator LESS_THAN_OR_EQUAL_TO
public static final SearchQuery.QueryOperator GREATER_THAN
public static final SearchQuery.QueryOperator LESS_THAN
public static final SearchQuery.QueryOperator EQUAL_TO
public static final SearchQuery.QueryOperator CONTAINS
public static final SearchQuery.QueryOperator MATCHES
public static SearchQuery.QueryOperator[] values()
for (SearchQuery.QueryOperator c : SearchQuery.QueryOperator.values()) System.out.println(c);
public static SearchQuery.QueryOperator 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 nullCopyright © 2018 SAP SE. All Rights Reserved.