public static enum Parser.UnaryOperator extends java.lang.Enum<Parser.UnaryOperator>
| Enum Constant and Description |
|---|
BITWISE_COMPLEMENT |
LOGICAL_COMPLEMENT |
MINUS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Parser.UnaryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parser.UnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.UnaryOperator MINUS
public static final Parser.UnaryOperator LOGICAL_COMPLEMENT
public static final Parser.UnaryOperator BITWISE_COMPLEMENT
public static Parser.UnaryOperator[] values()
for (Parser.UnaryOperator c : Parser.UnaryOperator.values()) System.out.println(c);
public static Parser.UnaryOperator 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Parser.UnaryOperator>