public static enum QueryParameter.Operator extends Enum<QueryParameter.Operator>
Enum Constant and Description |
---|
EQUALS |
EQUALS_IGNORE_CASE |
GREATER_THAN |
GREATER_THAN_OR_EQUALS |
LESS_THAN |
LESS_THAN_OR_EQUALS |
LIKE |
LIKE_IGNORE_CASE |
NOT_EQUALS |
NOT_EQUALS_IGNORE_CASE |
Modifier and Type | Method and Description |
---|---|
static QueryParameter.Operator |
from(String value) |
String |
getSign() |
static QueryParameter.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryParameter.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryParameter.Operator EQUALS
public static final QueryParameter.Operator EQUALS_IGNORE_CASE
public static final QueryParameter.Operator NOT_EQUALS
public static final QueryParameter.Operator NOT_EQUALS_IGNORE_CASE
public static final QueryParameter.Operator LESS_THAN
public static final QueryParameter.Operator LESS_THAN_OR_EQUALS
public static final QueryParameter.Operator GREATER_THAN
public static final QueryParameter.Operator GREATER_THAN_OR_EQUALS
public static final QueryParameter.Operator LIKE
public static final QueryParameter.Operator LIKE_IGNORE_CASE
public static QueryParameter.Operator[] values()
for (QueryParameter.Operator c : QueryParameter.Operator.values()) System.out.println(c);
public static QueryParameter.Operator 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 nullpublic String getSign()
public static QueryParameter.Operator from(String value)