|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChatState>
org.jivesoftware.smackx.ChatState
public enum ChatState
Represents the current state of a users interaction with another user. Implemented according to XEP-0085.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static final 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 name
|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |