Package org.jivesoftware.smack.packet
Enum Presence.Type
- All Implemented Interfaces:
Serializable
,Comparable<Presence.Type>
- Enclosing class:
- Presence
An enum to represent the presence type. Note that presence type is often confused
with presence mode. Generally, if a user is signed in to 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
Enum ConstantDescriptionThe user is available to receive messages (default).The presence stanza contains an error message.A presence probe as defined in section 4.3 of RFC 6121.Request subscription to recipient's presence.Grant subscription to sender's presence.The user is unavailable to receive messages.Request removal of subscription to sender's presence.Grant removal of subscription to sender's presence. -
Method Summary
Modifier and TypeMethodDescriptionstatic Presence.Type
fromString
(String string) Converts a String into the corresponding types.static Presence.Type
Returns the enum constant of this type with the specified name.static Presence.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
available
The user is available to receive messages (default). -
subscribe
Request subscription to recipient's presence. -
subscribed
Grant subscription to sender's presence. -
unsubscribe
Request removal of subscription to sender's presence. -
unsubscribed
Grant removal of subscription to sender's presence. -
error
The presence stanza contains an error message. -
probe
A presence probe as defined in section 4.3 of RFC 6121.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
Converts a String into the corresponding types. Valid String values that can be converted to types are: "available", "unavailable", "subscribe", "subscribed", "unsubscribe", "unsubscribed" and "error".- Parameters:
string
- the String value to covert.- Returns:
- the corresponding Type.
- Throws:
IllegalArgumentException
- when not able to parse the string parameterNullPointerException
- if the string is null
-