| 
 | Smack | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| 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 | |
|---|---|
| activeUser is actively participating in the chat session. | |
| composingUser is composing a message. | |
| goneUser has effectively ended their participation in the chat session. | |
| inactiveUser has not been actively participating in the chat session. | |
| pausedUser 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 are declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| 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 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
NullPointerException - if the argument is null| 
 | Smack | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||