public enum FilterExpression extends java.lang.Enum<FilterExpression>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUALS |
LESS_THAN |
LESS_THAN_EQUALS |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static FilterExpression |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterExpression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterExpression GREATER_THAN
public static final FilterExpression LESS_THAN
public static final FilterExpression EQUALS
public static final FilterExpression NOT_EQUALS
public static final FilterExpression GREATER_THAN_EQUALS
public static final FilterExpression LESS_THAN_EQUALS
public static FilterExpression[] values()
for (FilterExpression c : FilterExpression.values()) System.out.println(c);
public static FilterExpression 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