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