public static enum HttpChannelState.Action extends java.lang.Enum<HttpChannelState.Action>
| Enum Constant | Description |
|---|---|
ASYNC_DISPATCH |
|
ASYNC_ERROR |
|
COMPLETE |
|
DISPATCH |
|
ERROR_DISPATCH |
|
READ_CALLBACK |
|
TERMINATED |
|
WAIT |
|
WRITE_CALLBACK |
| Modifier and Type | Method | Description |
|---|---|---|
static HttpChannelState.Action |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static HttpChannelState.Action[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpChannelState.Action DISPATCH
public static final HttpChannelState.Action ASYNC_DISPATCH
public static final HttpChannelState.Action ERROR_DISPATCH
public static final HttpChannelState.Action ASYNC_ERROR
public static final HttpChannelState.Action WRITE_CALLBACK
public static final HttpChannelState.Action READ_CALLBACK
public static final HttpChannelState.Action COMPLETE
public static final HttpChannelState.Action TERMINATED
public static final HttpChannelState.Action WAIT
public static HttpChannelState.Action[] values()
for (HttpChannelState.Action c : HttpChannelState.Action.values()) System.out.println(c);
public static HttpChannelState.Action 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.