public static enum NodeFactory.BinaryOperation extends Enum<NodeFactory.BinaryOperation>
Enum Constant and Description |
---|
ADD |
BITWISE_AND |
BITWISE_LEFT_SHIFT |
BITWISE_OR |
BITWISE_RIGHT_SHIFT |
BITWISE_UNSIGNED_RIGHT_SHIFT |
BITWISE_XOR |
DIVIDE |
DUAL |
EQUAL |
EXPONENTIATE |
GREATER |
GREATER_OR_EQUAL |
IDENTICAL |
IN |
INSTANCEOF |
LESS |
LESS_OR_EQUAL |
LOGICAL_AND |
LOGICAL_OR |
MODULO |
MULTIPLY |
NOT_EQUAL |
NOT_IDENTICAL |
NULLISH_COALESCING |
SUBTRACT |
Modifier and Type | Method and Description |
---|---|
static NodeFactory.BinaryOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeFactory.BinaryOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeFactory.BinaryOperation ADD
public static final NodeFactory.BinaryOperation DIVIDE
public static final NodeFactory.BinaryOperation MODULO
public static final NodeFactory.BinaryOperation MULTIPLY
public static final NodeFactory.BinaryOperation EXPONENTIATE
public static final NodeFactory.BinaryOperation SUBTRACT
public static final NodeFactory.BinaryOperation EQUAL
public static final NodeFactory.BinaryOperation GREATER_OR_EQUAL
public static final NodeFactory.BinaryOperation GREATER
public static final NodeFactory.BinaryOperation IDENTICAL
public static final NodeFactory.BinaryOperation LESS_OR_EQUAL
public static final NodeFactory.BinaryOperation LESS
public static final NodeFactory.BinaryOperation NOT_EQUAL
public static final NodeFactory.BinaryOperation NOT_IDENTICAL
public static final NodeFactory.BinaryOperation BITWISE_XOR
public static final NodeFactory.BinaryOperation BITWISE_AND
public static final NodeFactory.BinaryOperation BITWISE_OR
public static final NodeFactory.BinaryOperation BITWISE_LEFT_SHIFT
public static final NodeFactory.BinaryOperation BITWISE_RIGHT_SHIFT
public static final NodeFactory.BinaryOperation BITWISE_UNSIGNED_RIGHT_SHIFT
public static final NodeFactory.BinaryOperation LOGICAL_AND
public static final NodeFactory.BinaryOperation LOGICAL_OR
public static final NodeFactory.BinaryOperation INSTANCEOF
public static final NodeFactory.BinaryOperation IN
public static final NodeFactory.BinaryOperation DUAL
public static final NodeFactory.BinaryOperation NULLISH_COALESCING
public static NodeFactory.BinaryOperation[] values()
public static NodeFactory.BinaryOperation 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 null