public enum operatorType extends java.lang.Enum<operatorType>
| Enum Constant and Description |
|---|
Add |
BitAnd |
BitOr |
BitXor |
Div |
FloorDiv |
LShift |
Mod |
Mult |
Pow |
RShift |
Sub |
UNDEFINED |
| 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 UNDEFINED
public static final operatorType Add
public static final operatorType Sub
public static final operatorType Mult
public static final operatorType Div
public static final operatorType Mod
public static final operatorType Pow
public static final operatorType LShift
public static final operatorType RShift
public static final operatorType BitOr
public static final operatorType BitXor
public static final operatorType BitAnd
public static final operatorType FloorDiv
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