public enum ChatState extends Enum<ChatState>
Enum Constant and Description |
---|
active
User is actively participating in the chat session.
|
composing
User is composing a message.
|
gone
User has effectively ended their participation in the chat session.
|
inactive
User has not been actively participating in the chat session.
|
paused
User had been composing but now has stopped.
|
Modifier and Type | Method and Description |
---|---|
static ChatState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatState inactive
public static ChatState[] values()
for (ChatState c : ChatState.values()) System.out.println(c);
public static ChatState 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 null