Uses of Interface
org.jxmpp.jid.Jid
-
Packages that use Jid Package Description org.jxmpp.jid Interfaces and classes for XMPP Addresses (JIDs).org.jxmpp.jid.impl JXMPP's implementation ofJid
and it's subtypes.org.jxmpp.jid.util Utility classes for JIDs.org.jxmpp.strings.testframework A framework to test various XMPP specific string preparation libraries. -
-
Uses of Jid in org.jxmpp.jid
Subinterfaces of Jid in org.jxmpp.jid Modifier and Type Interface Description interface
BareJid
An XMPP address (JID) which has noResourcepart
.interface
DomainBareJid
An XMPP address (JID) consisting of the domainpart.interface
DomainFullJid
An XMPP address (JID) consisting of a domainpart and a resourcepart.interface
DomainJid
An XMPP address (JID) which has noLocalpart
.interface
EntityBareJid
An XMPP address (JID) consisting of a localpart and a domainpart.interface
EntityFullJid
An XMPP address (JID) consisting of a localpart, domainpart and resourcepart.interface
EntityJid
An XMPP address (JID) which has aLocalpart
.interface
FullJid
An XMPP address (JID) which has aResourcepart
.Methods in org.jxmpp.jid with type parameters of type Jid Modifier and Type Method Description <T extends Jid>
TJid. downcast(Class<T> jidClass)
Return the downcasted instance of this Jid.Methods in org.jxmpp.jid with parameters of type Jid Modifier and Type Method Description boolean
Jid. isParentOf(Jid jid)
Check if this JID is the parent of another JID. -
Uses of Jid in org.jxmpp.jid.impl
Classes in org.jxmpp.jid.impl that implement Jid Modifier and Type Class Description class
AbstractJid
class
DomainAndResourcepartJid
RFC6122 2.4 allows JIDs with only a domain and resource part.class
DomainpartJid
class
LocalAndDomainpartJid
class
LocalDomainAndResourcepartJid
Methods in org.jxmpp.jid.impl with type parameters of type Jid Modifier and Type Method Description <T extends Jid>
TAbstractJid. downcast(Class<T> jidClass)
Methods in org.jxmpp.jid.impl that return Jid Modifier and Type Method Description static Jid
JidCreate. from(CharSequence jid)
Get aJid
from a CharSequence.static Jid
JidCreate. from(CharSequence localpart, CharSequence domainpart, CharSequence resource)
Get aJid
from the given parts.static Jid
JidCreate. from(String jidString)
Get aJid
from the given String.static Jid
JidCreate. from(String localpart, String domainpart, String resource)
Get aJid
from the given parts.static Jid
JidCreate. from(String localpart, String domainpart, String resource, JxmppContext context)
Get aJid
from the given parts.static Jid
JidCreate. from(String jidString, JxmppContext context)
Get aJid
from the given String.static Jid
JidCreate. fromOrNull(CharSequence cs)
static Jid
JidCreate. fromOrThrowUnchecked(CharSequence cs)
LikeJidCreate.from(CharSequence)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.static Jid
JidCreate. fromUnescaped(CharSequence unescapedJid)
Get aJid
from the given unescaped CharSequence.static Jid
JidCreate. fromUnescaped(String unescapedJidString)
Get aJid
from the given unescaped String.static Jid
JidCreate. fromUnescapedOrNull(CharSequence cs)
static Jid
JidCreate. fromUnescapedOrThrowUnchecked(CharSequence cs)
LikeJidCreate.fromUnescaped(CharSequence)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.static Jid
JidCreate. fromUrlEncoded(CharSequence cs)
Get aJid
from an URL encoded CharSequence.Methods in org.jxmpp.jid.impl with parameters of type Jid Modifier and Type Method Description int
AbstractJid. compareTo(Jid other)
boolean
AbstractJid. isParentOf(Jid jid)
-
Uses of Jid in org.jxmpp.jid.util
Methods in org.jxmpp.jid.util that return types with arguments of type Jid Modifier and Type Method Description static Set<Jid>
JidUtil. jidSetFrom(String[] jids)
Convert the given array of Strings to JIDs.static Set<Jid>
JidUtil. jidSetFrom(Collection<? extends CharSequence> jidStrings)
Convert the given collection of CharSequences to JIDs.Methods in org.jxmpp.jid.util with parameters of type Jid Modifier and Type Method Description static boolean
JidUtil. equals(Jid jidOne, Jid jidTwo)
Check if two JIDs are equals.Method parameters in org.jxmpp.jid.util with type arguments of type Jid Modifier and Type Method Description static void
JidUtil. filterDomainFullJid(Collection<? extends Jid> in, Collection<? super DomainFullJid> out)
Filter all domain full JIDs.static List<DomainFullJid>
JidUtil. filterDomainFullJidList(Collection<? extends Jid> input)
Filter all domain full JIDs.static Set<DomainFullJid>
JidUtil. filterDomainFullJidSet(Collection<? extends Jid> input)
Filter all domain full JIDs.static void
JidUtil. filterEntityBareJid(Collection<? extends Jid> in, Collection<? super EntityBareJid> out)
Filter all entity bare JIDs.static List<EntityBareJid>
JidUtil. filterEntityBareJidList(Collection<? extends Jid> input)
Filter all entity bare JIDs.static Set<EntityBareJid>
JidUtil. filterEntityBareJidSet(Collection<? extends Jid> input)
Filter all entity bare JIDs.static void
JidUtil. filterEntityFullJid(Collection<? extends Jid> in, Collection<? super EntityFullJid> out)
Filter all entity full JIDs.static List<EntityFullJid>
JidUtil. filterEntityFullJidList(Collection<? extends Jid> input)
Filter all full JIDs.static Set<EntityFullJid>
JidUtil. filterEntityFullJidSet(Collection<? extends Jid> input)
Filter all full JIDs.static List<String>
JidUtil. toStringList(Collection<? extends Jid> jids)
Convert a collection of JIDs to a list of Strings representing those JIDs.static void
JidUtil. toStrings(Collection<? extends Jid> jids, Collection<? super String> jidStrings)
Convert a collection of JIDs to a Collection of Strings.static Set<String>
JidUtil. toStringSet(Collection<? extends Jid> jids)
convert a collection of JIDs to a set of Strings representing those JIDs. -
Uses of Jid in org.jxmpp.strings.testframework
Fields in org.jxmpp.strings.testframework declared as Jid Modifier and Type Field Description Jid
InvalidJidTestresult.Failed. jid
Jid
ValidJidTestresult. jid
Constructors in org.jxmpp.strings.testframework with parameters of type Jid Constructor Description Failed(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, InvalidJid invalidJid, Jid jid)
Failed(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid)
FailedBecauseMismatch(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid, boolean domainpartMismatch, boolean localpartMismatch, boolean resourcepartMismatch)
Successful(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid)
ValidJidTestresult(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid)
-