public static enum ArithmeticUnaryExpression.Sign extends Enum<ArithmeticUnaryExpression.Sign>
| Modifier and Type | Method and Description |
|---|---|
static ArithmeticUnaryExpression.Sign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArithmeticUnaryExpression.Sign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArithmeticUnaryExpression.Sign PLUS
public static final ArithmeticUnaryExpression.Sign MINUS
public static ArithmeticUnaryExpression.Sign[] values()
for (ArithmeticUnaryExpression.Sign c : ArithmeticUnaryExpression.Sign.values()) System.out.println(c);
public static ArithmeticUnaryExpression.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 © 2012–2023. All rights reserved.