public static enum Condition.OPERATOR extends Enum<Condition.OPERATOR>
Enum Constant and Description |
---|
BETWEEN |
CONTAINS |
EQUAL |
EXTENDEDSEARCH |
GREATER_THAN |
GREATER_THAN_EQUAL |
INSTR |
IS_NOT_NULL |
IS_NULL |
LESS_THAN |
LESS_THAN_EQUAL |
LIKE |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
String |
getSymbol() |
static Condition.OPERATOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition.OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition.OPERATOR BETWEEN
public static final Condition.OPERATOR CONTAINS
public static final Condition.OPERATOR EQUAL
public static final Condition.OPERATOR EXTENDEDSEARCH
public static final Condition.OPERATOR GREATER_THAN
public static final Condition.OPERATOR GREATER_THAN_EQUAL
public static final Condition.OPERATOR INSTR
public static final Condition.OPERATOR IS_NOT_NULL
public static final Condition.OPERATOR IS_NULL
public static final Condition.OPERATOR LESS_THAN
public static final Condition.OPERATOR LESS_THAN_EQUAL
public static final Condition.OPERATOR LIKE
public static final Condition.OPERATOR NOT_EQUAL
public String getSymbol()
public static Condition.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 static Condition.OPERATOR[] values()
for (Condition.OPERATOR c : Condition.OPERATOR.values()) System.out.println(c);