public enum UnaryOperators extends java.lang.Enum<UnaryOperators> implements AJEUnaryOperator
| Enum Constant and Description |
|---|
LOGICAL_NOT |
UNARY_MINUS |
UNARY_PLUS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSymbol() |
static UnaryOperators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnaryOperators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryOperators UNARY_PLUS
public static final UnaryOperators UNARY_MINUS
public static final UnaryOperators LOGICAL_NOT
public static UnaryOperators[] values()
for (UnaryOperators c : UnaryOperators.values()) System.out.println(c);
public static UnaryOperators 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 getSymbol()
getSymbol in interface AJEUnaryOperator