public static enum NodeFactory.UnaryOperation extends Enum<NodeFactory.UnaryOperation>
Enum Constant and Description |
---|
BITWISE_COMPLEMENT |
MINUS |
NOT |
PLUS |
POSTFIX_LOCAL_DECREMENT |
POSTFIX_LOCAL_INCREMENT |
PREFIX_LOCAL_DECREMENT |
PREFIX_LOCAL_INCREMENT |
TYPE_OF |
VOID |
Modifier and Type | Method and Description |
---|---|
static NodeFactory.UnaryOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeFactory.UnaryOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeFactory.UnaryOperation MINUS
public static final NodeFactory.UnaryOperation PLUS
public static final NodeFactory.UnaryOperation BITWISE_COMPLEMENT
public static final NodeFactory.UnaryOperation NOT
public static final NodeFactory.UnaryOperation POSTFIX_LOCAL_INCREMENT
public static final NodeFactory.UnaryOperation PREFIX_LOCAL_INCREMENT
public static final NodeFactory.UnaryOperation POSTFIX_LOCAL_DECREMENT
public static final NodeFactory.UnaryOperation PREFIX_LOCAL_DECREMENT
public static final NodeFactory.UnaryOperation TYPE_OF
public static final NodeFactory.UnaryOperation VOID
public static NodeFactory.UnaryOperation[] values()
public static NodeFactory.UnaryOperation 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