public static enum ChatController.EnumChannelState extends java.lang.Enum<ChatController.EnumChannelState>
| Enum Constant and Description |
|---|
Connected |
Connecting |
Created |
Disconnected |
Disconnecting |
| Modifier and Type | Method and Description |
|---|---|
static ChatController.EnumChannelState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatController.EnumChannelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatController.EnumChannelState Created
public static final ChatController.EnumChannelState Connecting
public static final ChatController.EnumChannelState Connected
public static final ChatController.EnumChannelState Disconnecting
public static final ChatController.EnumChannelState Disconnected
public static ChatController.EnumChannelState[] values()
for (ChatController.EnumChannelState c : ChatController.EnumChannelState.values()) System.out.println(c);
public static ChatController.EnumChannelState 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