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