public static enum HttpParser.FieldState extends Enum<HttpParser.FieldState>
| Enum Constant and Description |
|---|
FIELD |
IN_NAME |
IN_VALUE |
VALUE |
WS_AFTER_NAME |
| Modifier and Type | Method and Description |
|---|---|
static HttpParser.FieldState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpParser.FieldState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpParser.FieldState FIELD
public static final HttpParser.FieldState IN_NAME
public static final HttpParser.FieldState VALUE
public static final HttpParser.FieldState IN_VALUE
public static final HttpParser.FieldState WS_AFTER_NAME
public static HttpParser.FieldState[] values()
for (HttpParser.FieldState c : HttpParser.FieldState.values()) System.out.println(c);
public static HttpParser.FieldState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved