public enum OperatorType extends java.lang.Enum<OperatorType>
| Enum Constant and Description |
|---|
ADD |
AND |
CAT |
COMPARE |
CONTAINS |
DIV |
EQUALS |
INDEXGET |
INDEXSET |
MEMBERGETTER |
MEMBERSETTER |
MOD |
MUL |
NEG |
NOT |
OR |
RANGE |
SUB |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static OperatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorType ADD
public static final OperatorType SUB
public static final OperatorType MUL
public static final OperatorType DIV
public static final OperatorType MOD
public static final OperatorType CAT
public static final OperatorType OR
public static final OperatorType AND
public static final OperatorType XOR
public static final OperatorType NEG
public static final OperatorType NOT
public static final OperatorType INDEXSET
public static final OperatorType INDEXGET
public static final OperatorType RANGE
public static final OperatorType CONTAINS
public static final OperatorType COMPARE
public static final OperatorType MEMBERGETTER
public static final OperatorType MEMBERSETTER
public static final OperatorType EQUALS
public static OperatorType[] values()
for (OperatorType c : OperatorType.values()) System.out.println(c);
public static OperatorType 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