| Enum Constant and Description |
|---|
AND |
EQ |
GREATER_THAN |
IN |
LIKE |
LOWER_THAN |
NE |
NOT |
OR |
| Modifier and Type | Method and Description |
|---|---|
static Operator |
from(java.lang.String name) |
static boolean |
isValid(java.lang.String name) |
static Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator EQ
public static final Operator NE
public static final Operator LIKE
public static final Operator IN
public static final Operator NOT
public static final Operator AND
public static final Operator OR
public static final Operator GREATER_THAN
public static final Operator LOWER_THAN
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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 nullpublic static Operator from(java.lang.String name)
public static boolean isValid(java.lang.String name)