| 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(java.lang.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 active
public static final ChatState composing
public static final ChatState paused
public static final ChatState inactive
public static final ChatState gone
public static ChatState[] values()
for (ChatState c : ChatState.values()) System.out.println(c);
public static ChatState 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