private static enum ParamsContentParser.State extends java.lang.Enum<ParamsContentParser.State>
Enum Constant and Description |
---|
LENGTH |
NAME |
NAME_BYTES |
NAME_LENGTH |
NAME_LENGTH_BYTES |
PARAM |
VALUE |
VALUE_BYTES |
VALUE_LENGTH |
VALUE_LENGTH_BYTES |
Modifier and Type | Method and Description |
---|---|
static ParamsContentParser.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamsContentParser.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamsContentParser.State LENGTH
public static final ParamsContentParser.State NAME_LENGTH
public static final ParamsContentParser.State NAME_LENGTH_BYTES
public static final ParamsContentParser.State VALUE_LENGTH
public static final ParamsContentParser.State VALUE_LENGTH_BYTES
public static final ParamsContentParser.State NAME
public static final ParamsContentParser.State NAME_BYTES
public static final ParamsContentParser.State VALUE
public static final ParamsContentParser.State VALUE_BYTES
public static final ParamsContentParser.State PARAM
public static ParamsContentParser.State[] values()
for (ParamsContentParser.State c : ParamsContentParser.State.values()) System.out.println(c);
public static ParamsContentParser.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