Uses of Interface
org.jxmpp.jid.Jid
Package
Description
Interfaces and classes for XMPP Addresses (JIDs).
JXMPP's implementation of
Jid
and it's subtypes.Utility classes for JIDs.
A framework to test various XMPP specific string preparation libraries.
-
Uses of Jid in org.jxmpp.jid
Modifier and TypeInterfaceDescriptioninterface
An XMPP address (JID) which has noResourcepart
.interface
An XMPP address (JID) consisting of the domainpart.interface
An XMPP address (JID) consisting of a domainpart and a resourcepart.interface
An XMPP address (JID) which has noLocalpart
.interface
An XMPP address (JID) consisting of a localpart and a domainpart.interface
An XMPP address (JID) consisting of a localpart, domainpart and resourcepart.interface
An XMPP address (JID) which has aLocalpart
.interface
An XMPP address (JID) which has aResourcepart
.Modifier and TypeMethodDescriptionboolean
Jid.isParentOf
(Jid jid) Check if this JID is the parent of another JID.boolean
Jid.isStrictParentOf
(Jid jid) Check if this JID is the strict parent of another JID. -
Uses of Jid in org.jxmpp.jid.impl
Modifier and TypeClassDescriptionclass
final class
RFC6122 2.4 allows JIDs with only a domain and resource part.final class
final class
final class
Modifier and TypeMethodDescriptionstatic 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
Get aJid
from the given String.static Jid
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.Modifier and TypeMethodDescriptionfinal int
final boolean
AbstractJid.isParentOf
(Jid jid) final boolean
AbstractJid.isStrictParentOf
(Jid jid) -
Uses of Jid in org.jxmpp.jid.util
Modifier and TypeMethodDescriptionJidUtil.jidSetFrom
(String[] jids) Convert the given array of Strings to JIDs.JidUtil.jidSetFrom
(Collection<? extends CharSequence> jidStrings) Convert the given collection of CharSequences to JIDs.Modifier and TypeMethodDescriptionstatic boolean
Check if two JIDs are equals.Modifier and TypeMethodDescriptionstatic 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.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.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
Modifier and TypeFieldDescriptionfinal Jid
InvalidJidTestresult.Failed.jid
final Jid
ValidJidTestresult.jid
ModifierConstructorDescriptionprotected
Failed
(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, InvalidJid invalidJid, Jid jid) protected
Failed
(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid) protected
FailedBecauseMismatch
(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid, boolean domainpartMismatch, boolean localpartMismatch, boolean resourcepartMismatch) protected
Successful
(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid) protected
ValidJidTestresult
(XmppStringPrepper xmppStringPrepper, long startNanos, long stopNanos, ValidJid validJid, Jid jid)