public static enum Operator.TYPE extends Enum<Operator.TYPE>
Enum Constant and Description |
---|
AND |
EQUAL |
GREATER |
GREATER_EQUAL |
IN |
IS_EMPTY |
LESS |
LESS_EQUAL |
NOT |
NOT_EQUAL |
OR |
Modifier and Type | Method and Description |
---|---|
static Operator.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator.TYPE LESS
public static final Operator.TYPE LESS_EQUAL
public static final Operator.TYPE GREATER
public static final Operator.TYPE GREATER_EQUAL
public static final Operator.TYPE EQUAL
public static final Operator.TYPE NOT_EQUAL
public static final Operator.TYPE AND
public static final Operator.TYPE OR
public static final Operator.TYPE NOT
public static final Operator.TYPE IN
public static final Operator.TYPE IS_EMPTY
public static Operator.TYPE[] values()
for (Operator.TYPE c : Operator.TYPE.values()) System.out.println(c);
public static Operator.TYPE 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 nullCopyright © 2017. All rights reserved.