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