public static enum DoubleEvaluator.Style extends Enum<DoubleEvaluator.Style>
| Enum Constant and Description |
|---|
EXCEL
The operator precedence used by Excel, or bash shell script language, where the unary minus as a higher precedence than the exponentiation.
|
STANDARD
The most commonly operator precedence, where the unary minus as a lower precedence than the exponentiation.
|
| Modifier and Type | Method and Description |
|---|---|
static DoubleEvaluator.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoubleEvaluator.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleEvaluator.Style STANDARD
public static final DoubleEvaluator.Style EXCEL
public static DoubleEvaluator.Style[] values()
for (DoubleEvaluator.Style c : DoubleEvaluator.Style.values()) System.out.println(c);
public static DoubleEvaluator.Style 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 null3.0.5