Uses of Class
org.jivesoftware.smack.RosterEntry

Packages that use RosterEntry
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smackx Smack extensions API. 
org.jivesoftware.smackx.packet XML packets that are part of the XMPP extension protocols. 
 

Uses of RosterEntry in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack that return RosterEntry
 RosterEntry RosterGroup.getEntry(java.lang.String user)
          Returns the roster entry associated with the given XMPP address or null if the user is not an entry in the group.
 RosterEntry Roster.getEntry(java.lang.String user)
          Returns the roster entry associated with the given XMPP address or null if the user is not an entry in the roster.
 

Methods in org.jivesoftware.smack that return types with arguments of type RosterEntry
 java.util.Collection<RosterEntry> RosterGroup.getEntries()
          Returns an unmodifiable collection of all entries in the group.
 java.util.Collection<RosterEntry> Roster.getEntries()
          Returns an unmodifiable collection of all entries in the roster, including entries that don't belong to any groups.
 java.util.Collection<RosterEntry> Roster.getUnfiledEntries()
          Returns an unmodifiable collection for the unfiled roster entries.
 

Methods in org.jivesoftware.smack with parameters of type RosterEntry
 void RosterGroup.addEntry(RosterEntry entry)
          Adds a roster entry to this group.
 boolean RosterGroup.contains(RosterEntry entry)
          Returns true if the specified entry is part of this group.
 void RosterGroup.removeEntry(RosterEntry entry)
          Removes a roster entry from this group.
 void Roster.removeEntry(RosterEntry entry)
          Removes a roster entry from the roster.
static void RosterTest.verifyBenvoliosEntry(RosterEntry benvolio)
          Check Benvolio's roster entry according to the example in RFC3921: Retrieving One's Roster on Login.
static void RosterTest.verifyMercutiosEntry(RosterEntry mercutio)
          Check Mercutio's roster entry according to the example in RFC3921: Retrieving One's Roster on Login.
static void RosterTest.verifyRomeosEntry(RosterEntry romeo)
          Check Romeo's roster entry according to the example in RFC3921: Retrieving One's Roster on Login.
 

Uses of RosterEntry in org.jivesoftware.smackx
 

Methods in org.jivesoftware.smackx with parameters of type RosterEntry
 void RosterExchangeManager.send(RosterEntry rosterEntry, java.lang.String targetUserID)
          Sends a roster entry to userID.
 

Uses of RosterEntry in org.jivesoftware.smackx.packet
 

Methods in org.jivesoftware.smackx.packet with parameters of type RosterEntry
 void RosterExchange.addRosterEntry(RosterEntry rosterEntry)
          Adds a roster entry to the packet.