public enum SearchCriteriaFilterOperator extends Enum<SearchCriteriaFilterOperator>
| Enum Constant and Description |
|---|
bool_eq |
eq |
gt |
gte |
in |
like |
lt |
lte |
neq |
ni |
| Modifier and Type | Method and Description |
|---|---|
static SearchCriteriaFilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchCriteriaFilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchCriteriaFilterOperator bool_eq
public static final SearchCriteriaFilterOperator eq
public static final SearchCriteriaFilterOperator neq
public static final SearchCriteriaFilterOperator gt
public static final SearchCriteriaFilterOperator gte
public static final SearchCriteriaFilterOperator lt
public static final SearchCriteriaFilterOperator lte
public static final SearchCriteriaFilterOperator like
public static final SearchCriteriaFilterOperator in
public static final SearchCriteriaFilterOperator ni
public static SearchCriteriaFilterOperator[] values()
for (SearchCriteriaFilterOperator c : SearchCriteriaFilterOperator.values()) System.out.println(c);
public static SearchCriteriaFilterOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.