public static enum CalculatorConfig.NumImpl extends java.lang.Enum<CalculatorConfig.NumImpl>
Enum Constant | Description |
---|---|
RATIONAL_BIGINTEGER |
|
RATIONAL_INTEGER |
|
REAL_DOUBLE_PRECISION |
|
REAL_SINGLE_PRECISION |
Modifier and Type | Method | Description |
---|---|---|
static CalculatorConfig.NumImpl |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CalculatorConfig.NumImpl[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalculatorConfig.NumImpl REAL_SINGLE_PRECISION
public static final CalculatorConfig.NumImpl REAL_DOUBLE_PRECISION
public static final CalculatorConfig.NumImpl RATIONAL_INTEGER
public static final CalculatorConfig.NumImpl RATIONAL_BIGINTEGER
public static CalculatorConfig.NumImpl[] values()
for (CalculatorConfig.NumImpl c : CalculatorConfig.NumImpl.values()) System.out.println(c);
public static CalculatorConfig.NumImpl 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 null