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 ofJidand 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 interfaceBareJidAn XMPP address (JID) which has noResourcepart.interfaceDomainBareJidAn XMPP address (JID) consisting of the domainpart.interfaceDomainFullJidAn XMPP address (JID) consisting of a domainpart and a resourcepart.interfaceDomainJidAn XMPP address (JID) which has noLocalpart.interfaceEntityBareJidAn XMPP address (JID) consisting of a localpart and a domainpart.interfaceEntityFullJidAn XMPP address (JID) consisting of a localpart, domainpart and resourcepart.interfaceEntityJidAn XMPP address (JID) which has aLocalpart.interfaceFullJidAn 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 booleanJid. 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 classAbstractJidclassDomainAndResourcepartJidRFC6122 2.4 allows JIDs with only a domain and resource part.classDomainpartJidclassLocalAndDomainpartJidclassLocalDomainAndResourcepartJidMethods 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 JidJidCreate. from(CharSequence jid)Get aJidfrom a CharSequence.static JidJidCreate. from(CharSequence localpart, CharSequence domainpart, CharSequence resource)Get aJidfrom the given parts.static JidJidCreate. from(String jidString)Get aJidfrom the given String.static JidJidCreate. from(String localpart, String domainpart, String resource)Get aJidfrom the given parts.static JidJidCreate. from(String localpart, String domainpart, String resource, JxmppContext context)Get aJidfrom the given parts.static JidJidCreate. from(String jidString, JxmppContext context)Get aJidfrom the given String.static JidJidCreate. fromOrNull(CharSequence cs)static JidJidCreate. fromOrThrowUnchecked(CharSequence cs)LikeJidCreate.from(CharSequence)but does throw an uncheckedIllegalArgumentExceptioninstead of aXmppStringprepException.static JidJidCreate. fromUnescaped(CharSequence unescapedJid)Get aJidfrom the given unescaped CharSequence.static JidJidCreate. fromUnescaped(String unescapedJidString)Get aJidfrom the given unescaped String.static JidJidCreate. fromUnescapedOrNull(CharSequence cs)static JidJidCreate. fromUnescapedOrThrowUnchecked(CharSequence cs)LikeJidCreate.fromUnescaped(CharSequence)but does throw an uncheckedIllegalArgumentExceptioninstead of aXmppStringprepException.static JidJidCreate. fromUrlEncoded(CharSequence cs)Get aJidfrom an URL encoded CharSequence.Methods in org.jxmpp.jid.impl with parameters of type Jid Modifier and Type Method Description intAbstractJid. compareTo(Jid other)booleanAbstractJid. 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 booleanJidUtil. 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 voidJidUtil. 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 voidJidUtil. 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 voidJidUtil. 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 voidJidUtil. 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 JidInvalidJidTestresult.Failed. jidJidValidJidTestresult. jidConstructors 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)
-