Class ChatState
- java.lang.Object
-
- rocks.xmpp.extensions.chatstates.model.ChatState
-
public abstract class ChatState extends Object
Represents a chat state, i.e. composing, active, inactive, paused or gone.- See Also:
- XEP-0085: Chat State Notifications, XML Schema
-
-
Field Summary
Fields Modifier and Type Field Description static ChatState
ACTIVE
User is actively participating in the chat session.static ChatState
COMPOSING
User is composing a message.static ChatState
GONE
User has effectively ended their participation in the chat session.static ChatState
INACTIVE
User has not been actively participating in the chat session.static String
NAMESPACE
http://jabber.org/protocol/chatstatesstatic ChatState
PAUSED
User had been composing but now has stopped.
-
-
-
Field Detail
-
ACTIVE
public static final ChatState ACTIVE
User is actively participating in the chat session.
-
COMPOSING
public static final ChatState COMPOSING
User is composing a message.
-
GONE
public static final ChatState GONE
User has effectively ended their participation in the chat session.
-
INACTIVE
public static final ChatState INACTIVE
User has not been actively participating in the chat session.
-
PAUSED
public static final ChatState PAUSED
User had been composing but now has stopped.
-
NAMESPACE
public static final String NAMESPACE
http://jabber.org/protocol/chatstates- See Also:
- Constant Field Values
-
-