public static enum HttpParser.FieldState extends java.lang.Enum<HttpParser.FieldState>
| Enum Constant | Description |
|---|---|
FIELD |
|
IN_NAME |
|
IN_VALUE |
|
VALUE |
|
WS_AFTER_NAME |
| Modifier and Type | Method | Description |
|---|---|---|
static HttpParser.FieldState |
valueOf(java.lang.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(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 nullCopyright © 1995–2018 Webtide. All rights reserved.