public static enum Parser.UnaryOperator extends Enum<Parser.UnaryOperator>
| Enum Constant and Description |
|---|
BITWISE_COMPLEMENT |
LOGICAL_COMPLEMENT |
MINUS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Parser.UnaryOperator |
valueOf(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(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 nullpublic String toString()
toString in class Enum<Parser.UnaryOperator>Copyright © 2018 Arno Unkrig. All rights reserved.