private static enum HttpOutput.OutputState extends java.lang.Enum<HttpOutput.OutputState>
Enum Constant and Description |
---|
ASYNC |
CLOSED |
ERROR |
OPEN |
PENDING |
READY |
UNREADY |
Modifier and Type | Method and Description |
---|---|
static HttpOutput.OutputState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpOutput.OutputState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpOutput.OutputState OPEN
public static final HttpOutput.OutputState ASYNC
public static final HttpOutput.OutputState READY
public static final HttpOutput.OutputState PENDING
public static final HttpOutput.OutputState UNREADY
public static final HttpOutput.OutputState ERROR
public static final HttpOutput.OutputState CLOSED
public static HttpOutput.OutputState[] values()
for (HttpOutput.OutputState c : HttpOutput.OutputState.values()) System.out.println(c);
public static HttpOutput.OutputState 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