Serializable, Comparable<UnaryExprNode.Sign>public static enum UnaryExprNode.Sign extends Enum<UnaryExprNode.Sign>
| Modifier and Type | Method | Description | 
|---|---|---|
| static UnaryExprNode.Sign | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static UnaryExprNode.Sign[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UnaryExprNode.Sign PLUS
public static final UnaryExprNode.Sign MINUS
public static UnaryExprNode.Sign[] values()
for (UnaryExprNode.Sign c : UnaryExprNode.Sign.values()) System.out.println(c);
public static UnaryExprNode.Sign 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 © 2019 Apache Software Foundation. All Rights Reserved.