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