public static enum Filter.Operator extends java.lang.Enum<Filter.Operator>
Enum Constant and Description |
---|
CONTAINS
For string and some complex types.
|
EQUALS
Specify an exact value.
|
GREATER
For numerical and date types, finding objects with a higher value.
|
LESS
For numerical and date types, finding objects with a lower value.
|
NULL
Whether an object property exists or not (true/false).
|
Modifier and Type | Method and Description |
---|---|
static Filter.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.Operator EQUALS
public static final Filter.Operator CONTAINS
public static final Filter.Operator LESS
public static final Filter.Operator GREATER
public static final Filter.Operator NULL
public static Filter.Operator[] values()
for (Filter.Operator c : Filter.Operator.values()) System.out.println(c);
public static Filter.Operator 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