Package org.jivesoftware.smack.filter
Class StanzaIdFilter
java.lang.Object
org.jivesoftware.smack.filter.StanzaIdFilter
- All Implemented Interfaces:
Predicate<Stanza>
,StanzaFilter
Filters for Stanzas with a particular stanza ID.
-
Constructor Summary
ConstructorDescriptionStanzaIdFilter
(String stanzaId) Creates a new stanza ID filter using the specified stanza ID.StanzaIdFilter
(StanzaView stanza) Creates a new stanza ID filter using the specified stanza's ID. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.jivesoftware.smack.filter.StanzaFilter
asPredicate, test
-
Constructor Details
-
StanzaIdFilter
Creates a new stanza ID filter using the specified stanza's ID.- Parameters:
stanza
- the stanza which the ID is taken from.
-
StanzaIdFilter
Creates a new stanza ID filter using the specified stanza ID.- Parameters:
stanzaId
- the stanza ID to filter for.
-
-
Method Details
-
accept
Description copied from interface:StanzaFilter
Tests whether or not the specified stanza should pass the filter.- Specified by:
accept
in interfaceStanzaFilter
- Parameters:
stanza
- the stanza to test.- Returns:
- true if and only if
stanza
passes the filter.
-
toString
-