public enum NettyNetworkChannelState extends Enum<NettyNetworkChannelState>
AsyncNettyNetworkChannel.| Enum Constant and Description |
|---|
BINDING |
BOUND |
CLOSED |
CLOSING |
CONNECTED |
CONNECTING |
DISCONNECTING |
OPEN |
OPENING |
UNINITIALIZED |
| Modifier and Type | Method and Description |
|---|---|
static NettyNetworkChannelState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NettyNetworkChannelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NettyNetworkChannelState UNINITIALIZED
public static final NettyNetworkChannelState OPENING
public static final NettyNetworkChannelState OPEN
public static final NettyNetworkChannelState BINDING
public static final NettyNetworkChannelState BOUND
public static final NettyNetworkChannelState CONNECTING
public static final NettyNetworkChannelState CONNECTED
public static final NettyNetworkChannelState DISCONNECTING
public static final NettyNetworkChannelState CLOSING
public static final NettyNetworkChannelState CLOSED
public static NettyNetworkChannelState[] values()
for (NettyNetworkChannelState c : NettyNetworkChannelState.values()) System.out.println(c);
public static NettyNetworkChannelState 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 © 2017 TeleStax, Inc.. All Rights Reserved.