public static enum ChannelEventRunnable.ChannelState extends Enum<ChannelEventRunnable.ChannelState>
| Enum Constant and Description |
|---|
CAUGHT
CAUGHT
|
CONNECTED
CONNECTED
|
DISCONNECTED
DISCONNECTED
|
RECEIVED
RECEIVED
|
SENT
SENT
|
| Modifier and Type | Method and Description |
|---|---|
static ChannelEventRunnable.ChannelState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelEventRunnable.ChannelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelEventRunnable.ChannelState CONNECTED
public static final ChannelEventRunnable.ChannelState DISCONNECTED
public static final ChannelEventRunnable.ChannelState SENT
public static final ChannelEventRunnable.ChannelState RECEIVED
public static final ChannelEventRunnable.ChannelState CAUGHT
public static ChannelEventRunnable.ChannelState[] values()
for (ChannelEventRunnable.ChannelState c : ChannelEventRunnable.ChannelState.values()) System.out.println(c);
public static ChannelEventRunnable.ChannelState 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 © 2011–2018 The Apache Software Foundation. All rights reserved.