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