Uses of Class
rocks.xmpp.core.stanza.model.Presence.Show
-
Packages that use Presence.Show Package Description rocks.xmpp.core.stanza.model Provides XML Stanzas and Stanza Errors.rocks.xmpp.extensions.muc Provides classes for XEP-0045: Multi-User Chat.rocks.xmpp.extensions.pubsub.model Provides XML schema implementations and configuration classes for XEP-0060: Publish-Subscribe. -
-
Uses of Presence.Show in rocks.xmpp.core.stanza.model
Methods in rocks.xmpp.core.stanza.model that return Presence.Show Modifier and Type Method Description Presence.Show
Presence. getShow()
Gets the<show/>
element.static Presence.Show
Presence.Show. valueOf(String name)
Returns the enum constant of this type with the specified name.static Presence.Show[]
Presence.Show. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in rocks.xmpp.core.stanza.model with parameters of type Presence.Show Modifier and Type Method Description void
Presence. setShow(Presence.Show show)
Sets the<show/>
element.Constructors in rocks.xmpp.core.stanza.model with parameters of type Presence.Show Constructor Description Presence(Jid to, Presence.Show show, String status)
Constructs a directed presence with a specific 'show' attribute and status.Presence(Jid to, Presence.Type type, Presence.Show show, Collection<Text> status, byte priority, String id, Jid from, Locale language, Collection<?> extensions, StanzaError error)
Constructs a presence with all possible values.Presence(Presence.Show show)
Constructs a presence with a specific 'show' value.Presence(Presence.Show show, byte priority)
Constructs a presence with a specific 'show' value and priority. -
Uses of Presence.Show in rocks.xmpp.extensions.muc
Methods in rocks.xmpp.extensions.muc with parameters of type Presence.Show Modifier and Type Method Description void
ChatRoom. changeAvailabilityStatus(Presence.Show show, String status)
Changes the availability status. -
Uses of Presence.Show in rocks.xmpp.extensions.pubsub.model
Methods in rocks.xmpp.extensions.pubsub.model that return types with arguments of type Presence.Show Modifier and Type Method Description List<Presence.Show>
SubscribeOptions. getShowValues()
Gets the show values.Method parameters in rocks.xmpp.extensions.pubsub.model with type arguments of type Presence.Show Modifier and Type Method Description SubscribeOptions.Builder
SubscribeOptions.Builder. showValues(Collection<Presence.Show> showValues)
Sets the presence states for which an entity wants to receive notifications.
-