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