public enum DoubleConstants extends java.lang.Enum<DoubleConstants>
| Enum Constant and Description |
|---|
DURATION_DEFAULT |
DURATION_MAX |
DURATION_MIN |
HEIGHT |
KEY_INPUT_SPEED |
WIDTH |
| Modifier and Type | Method and Description |
|---|---|
double |
get() |
static DoubleConstants |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DoubleConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleConstants WIDTH
public static final DoubleConstants HEIGHT
public static final DoubleConstants DURATION_MIN
public static final DoubleConstants DURATION_MAX
public static final DoubleConstants DURATION_DEFAULT
public static final DoubleConstants KEY_INPUT_SPEED
public static DoubleConstants[] values()
for (DoubleConstants c : DoubleConstants.values()) System.out.println(c);
public static DoubleConstants 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 nullpublic double get()