public enum ChannelEvent extends java.lang.Enum<ChannelEvent>
Channel object.
An event is either an UPDATE or a ChannelState.| Enum Constant and Description |
|---|
attached |
attaching |
detached |
detaching |
failed |
initialized |
suspended |
update
An event for changes to channel conditions that do not result in a change in
ChannelState. |
| Modifier and Type | Method and Description |
|---|---|
static ChannelEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChannelEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelEvent initialized
public static final ChannelEvent attaching
public static final ChannelEvent attached
public static final ChannelEvent detaching
public static final ChannelEvent detached
public static final ChannelEvent failed
public static final ChannelEvent suspended
public static final ChannelEvent update
ChannelState.
Spec: RTL2g
public static ChannelEvent[] values()
for (ChannelEvent c : ChannelEvent.values()) System.out.println(c);
public static ChannelEvent 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