public enum FilterOperator extends Enum<FilterOperator>
Filter| Enum Constant and Description |
|---|
EQUAL
Equal.
|
GREATER_THAN
Greater than.
|
GREATER_THAN_OR_EQUAL
Grater than or equal.
|
IN
In.
|
LESS_THAN
Less than.
|
LESS_THAN_OR_EQUAL
Less than or equal.
|
LIKE
Like.
|
NOT_EQUAL
Not equal.
|
NOT_IN
Not in.
|
NOT_LIKE
Not like.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperator LESS_THAN
public static final FilterOperator LESS_THAN_OR_EQUAL
public static final FilterOperator GREATER_THAN
public static final FilterOperator GREATER_THAN_OR_EQUAL
public static final FilterOperator EQUAL
public static final FilterOperator NOT_EQUAL
public static final FilterOperator IN
public static final FilterOperator NOT_IN
public static final FilterOperator LIKE
Note: This operation just support JDBC repository.
public static final FilterOperator NOT_LIKE
Note: This operation just support JDBC repository.
public static FilterOperator[] values()
for (FilterOperator c : FilterOperator.values()) System.out.println(c);
public static FilterOperator 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 © 2009–2019 B3log. All rights reserved.