public enum OperatorType extends java.lang.Enum<OperatorType>
| Enum Constant and Description |
|---|
AND |
DEF |
EXIT |
LOOP |
LOOPDEF |
LOOPXOR |
OR |
SEQ |
VOID |
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 AND
public static final OperatorType XOR
public static final OperatorType SEQ
public static final OperatorType DEF
public static final OperatorType OR
public static final OperatorType LOOP
public static final OperatorType VOID
public static final OperatorType EXIT
public static final OperatorType LOOPDEF
public static final OperatorType LOOPXOR
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