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