Uses of Class
org.jivesoftware.smack.packet.Presence

Packages that use Presence
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smack.util Utility classes. 
org.jivesoftware.smackx.muc Classes and Interfaces that implement Multi-User Chat (MUC). 
org.jivesoftware.smackx.workgroup.agent   
 

Uses of Presence in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack that return Presence
 Presence Roster.getPresence(java.lang.String user)
          Returns the presence info for a particular user.
 Presence Roster.getPresenceResource(java.lang.String userWithResource)
          Returns the presence info for a particular user's resource, or unavailable presence if the user is offline or if no presence information is available, such as when you are not subscribed to the user's presence updates.
 

Methods in org.jivesoftware.smack that return types with arguments of type Presence
 java.util.Iterator<Presence> Roster.getPresences(java.lang.String user)
          Returns an iterator (of Presence objects) for all of a user's current presences or an unavailable presence if the user is unavailable (offline) or if no presence information is available, such as when you are not subscribed to the user's presence updates.
 

Methods in org.jivesoftware.smack with parameters of type Presence
 void DummyConnection.disconnect(Presence unavailablePresence)
           
 void XMPPConnection.disconnect(Presence unavailablePresence)
           
abstract  void Connection.disconnect(Presence unavailablePresence)
          Closes the connection.
 void RosterTest.TestRosterListener.presenceChanged(Presence presence)
           
 void RosterListener.presenceChanged(Presence presence)
          Called when the presence of a roster entry is changed.
 

Uses of Presence in org.jivesoftware.smack.util
 

Methods in org.jivesoftware.smack.util that return Presence
static Presence PacketParserUtils.parsePresence(org.xmlpull.v1.XmlPullParser parser)
          Parses a presence packet.
 

Uses of Presence in org.jivesoftware.smackx.muc
 

Methods in org.jivesoftware.smackx.muc that return Presence
 Presence MultiUserChat.getOccupantPresence(java.lang.String user)
          Returns the presence info for a particular user, or null if the user is not in the room.
 

Uses of Presence in org.jivesoftware.smackx.workgroup.agent
 

Methods in org.jivesoftware.smackx.workgroup.agent that return Presence
 Presence AgentRoster.getPresence(java.lang.String user)
          Returns the presence info for a particular agent, or null if the agent is unavailable (offline) or if no presence information is available.
 

Methods in org.jivesoftware.smackx.workgroup.agent with parameters of type Presence
 void AgentRosterListener.presenceChanged(Presence presence)