public enum EnumBitsStored extends java.lang.Enum<EnumBitsStored>
| Enum Constant and Description |
|---|
EIGHT
The EIGHT.
|
ELEVEN
The ELEVEN.
|
FIFTEEN
The FIFTEEN.
|
FOURTEEN
The FOURTEEN.
|
NINE
The NINE.
|
ONE
The ONE.
|
SEVEN
The SEVEN.
|
SIX
The SIX.
|
SIXTEEN
The SIXTEEN.
|
TEN
The TEN.
|
THIRTEEN
The THIRTEEN.
|
TWELVE
The TWELVE.
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
Returns the value of this enum.
|
static EnumBitsStored |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBitsStored[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBitsStored ONE
public static final EnumBitsStored SIX
public static final EnumBitsStored SEVEN
public static final EnumBitsStored EIGHT
public static final EnumBitsStored NINE
public static final EnumBitsStored TEN
public static final EnumBitsStored ELEVEN
public static final EnumBitsStored TWELVE
public static final EnumBitsStored THIRTEEN
public static final EnumBitsStored FOURTEEN
public static final EnumBitsStored FIFTEEN
public static final EnumBitsStored SIXTEEN
public static EnumBitsStored[] values()
for (EnumBitsStored c : EnumBitsStored.values()) System.out.println(c);
public static EnumBitsStored 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 short getValue()