Package org.xmpp.packet
Enum Presence.Type
- All Implemented Interfaces:
Serializable,Comparable<Presence.Type>,java.lang.constant.Constable
- Enclosing class:
- Presence
Represents the type of a presence packet. Note: the presence is assumed
to be "available" when the type attribute of the packet is
null.
The valid types are:
Presence.Type.unavailable-- signals that the entity is no longer available for communication.Presence.Type.subscribe-- the sender wishes to subscribe to the recipient's presence.Presence.Type.subscribed-- the sender has allowed the recipient to receive their presence.Presence.Type.unsubscribe-- the sender is unsubscribing from another entity's presence.Presence.Type.unsubcribed-- the subscription request has been denied or a previously-granted subscription has been cancelled.Presence.Type.probe-- a request for an entity's current presence; SHOULD be generated only by a server on behalf of a user.Presence.Type.error-- an error has occurred regarding processing or delivery of a previously-sent presence stanza.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn error has occurred regarding processing or delivery of a previously-sent presence stanza.A request for an entity's current presence; SHOULD be generated only by a server on behalf of a user.The sender wishes to subscribe to the recipient's presence.The sender has allowed the recipient to receive their presence.Typically short text message used in line-by-line chat interfaces.The sender is unsubscribing from another entity's presence.The subscription request has been denied or a previously-granted subscription has been cancelled. -
Method Summary
Modifier and TypeMethodDescriptionstatic Presence.TypeReturns 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
-
subscribe
The sender wishes to subscribe to the recipient's presence. -
subscribed
The sender has allowed the recipient to receive their presence. -
unsubscribe
The sender is unsubscribing from another entity's presence. -
unsubscribed
The subscription request has been denied or a previously-granted subscription has been cancelled. -
probe
A request for an entity's current presence; SHOULD be generated only by a server on behalf of a user. -
error
An error has occurred regarding processing or delivery of a previously-sent presence stanza.
-
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
-