|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<GooglePresence.Type>
com.voiceclearly.api.chat.GooglePresence.Type
public static enum GooglePresence.Type
A enum to represent the presecence type. Not that presence type is often confused
with presence mode. Generally, if a user is signed into a server, they have a presence
type of available, even if the mode is away,
dnd, etc. The presence type is only unavailable when
the user is signing out of the server.
| Enum Constant Summary | |
|---|---|
available
The user is available to receive messages (default). |
|
error
The presence packet contains an error message. |
|
subscribe
Request subscription to recipient's presence. |
|
subscribed
Grant subscription to sender's presence. |
|
unavailable
The user is unavailable to receive messages. |
|
unsubscribe
Request removal of subscription to sender's presence. |
|
unsubscribed
Grant removal of subscription to sender's presence. |
|
| Method Summary | |
|---|---|
static GooglePresence.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GooglePresence.Type[] |
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 GooglePresence.Type available
public static final GooglePresence.Type unavailable
public static final GooglePresence.Type subscribe
public static final GooglePresence.Type subscribed
public static final GooglePresence.Type unsubscribe
public static final GooglePresence.Type unsubscribed
public static final GooglePresence.Type error
| Method Detail |
|---|
public static GooglePresence.Type[] values()
for (GooglePresence.Type c : GooglePresence.Type.values()) System.out.println(c);
public static GooglePresence.Type 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||