public static enum NodeValue.OperationType extends Enum<NodeValue.OperationType>
| Enum Constant and Description |
|---|
BUILTIN_FUNCTION |
DIV |
DIV_SLASH |
MINUS |
MOD |
MULT |
PLUS |
POW |
UNARY_MINUS |
UNARY_PLUS |
| Modifier and Type | Method and Description |
|---|---|
static NodeValue.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeValue.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeValue.OperationType PLUS
public static final NodeValue.OperationType MINUS
public static final NodeValue.OperationType MULT
public static final NodeValue.OperationType DIV_SLASH
public static final NodeValue.OperationType MOD
public static final NodeValue.OperationType DIV
public static final NodeValue.OperationType POW
public static final NodeValue.OperationType BUILTIN_FUNCTION
public static final NodeValue.OperationType UNARY_MINUS
public static final NodeValue.OperationType UNARY_PLUS
public static NodeValue.OperationType[] values()
for (NodeValue.OperationType c : NodeValue.OperationType.values()) System.out.println(c);
public static NodeValue.OperationType 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 © 2013. All Rights Reserved.