public enum AdditionalInfo extends java.lang.Enum<AdditionalInfo>
| Enum Constant and Description |
|---|
DIRECT |
EIGHT_BYTES |
FOUR_BYTES |
INDEFINITE |
ONE_BYTE |
RESERVED |
TWO_BYTES |
| Modifier and Type | Method and Description |
|---|---|
static AdditionalInfo |
fromByte(byte b) |
static AdditionalInfo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdditionalInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdditionalInfo DIRECT
public static final AdditionalInfo ONE_BYTE
public static final AdditionalInfo TWO_BYTES
public static final AdditionalInfo FOUR_BYTES
public static final AdditionalInfo EIGHT_BYTES
public static final AdditionalInfo RESERVED
public static final AdditionalInfo INDEFINITE
public static AdditionalInfo[] values()
for (AdditionalInfo c : AdditionalInfo.values()) System.out.println(c);
public static AdditionalInfo 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 AdditionalInfo fromByte(byte b)