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