Uses of Interface
org.jxmpp.jid.DomainFullJid
-
Packages that use DomainFullJid 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. -
-
Uses of DomainFullJid in org.jxmpp.jid
Methods in org.jxmpp.jid that return DomainFullJid Modifier and Type Method Description DomainFullJid
Jid. asDomainFullJidIfPossible()
Convert this Jid to aDomainFullJid
if possible.DomainFullJid
Jid. asDomainFullJidOrThrow()
Convert this Jid to aDomainFullJid
or throw anIllegalStateException
if this is not possible.Methods in org.jxmpp.jid with parameters of type DomainFullJid Modifier and Type Method Description boolean
Jid. isParentOf(DomainFullJid domainFullJid)
SeeJid.isParentOf(Jid)
. -
Uses of DomainFullJid in org.jxmpp.jid.impl
Classes in org.jxmpp.jid.impl that implement DomainFullJid Modifier and Type Class Description class
DomainAndResourcepartJid
RFC6122 2.4 allows JIDs with only a domain and resource part.Methods in org.jxmpp.jid.impl that return DomainFullJid Modifier and Type Method Description DomainFullJid
DomainAndResourcepartJid. asDomainFullJidIfPossible()
DomainFullJid
DomainpartJid. asDomainFullJidIfPossible()
DomainFullJid
LocalAndDomainpartJid. asDomainFullJidIfPossible()
DomainFullJid
LocalDomainAndResourcepartJid. asDomainFullJidIfPossible()
DomainFullJid
AbstractJid. asDomainFullJidOrThrow()
static DomainFullJid
JidCreate. domainFullFrom(CharSequence jid)
Get a domain full JID from the given CharSequence.static DomainFullJid
JidCreate. domainFullFrom(String jid)
Get a domain full JID from the given String.static DomainFullJid
JidCreate. domainFullFrom(String jid, JxmppContext context)
Get a domain full JID from the given String.static DomainFullJid
JidCreate. domainFullFrom(DomainBareJid domainBareJid, Resourcepart resource)
Get a domain full JID.static DomainFullJid
JidCreate. domainFullFrom(Domainpart domainpart, Resourcepart resource)
Get a domain full JID.static DomainFullJid
JidCreate. domainFullFromOrNull(CharSequence cs)
static DomainFullJid
JidCreate. domainFullFromOrThrowUnchecked(CharSequence cs)
LikeJidCreate.domainFullFrom(CharSequence)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.static DomainFullJid
JidCreate. domainFullFromUrlEncoded(CharSequence cs)
Get aDomainFullJid
from an URL encoded CharSequence.Methods in org.jxmpp.jid.impl with parameters of type DomainFullJid Modifier and Type Method Description boolean
DomainAndResourcepartJid. isParentOf(DomainFullJid domainFullJid)
boolean
DomainpartJid. isParentOf(DomainFullJid domainFullJid)
boolean
LocalAndDomainpartJid. isParentOf(DomainFullJid domainFullJid)
boolean
LocalDomainAndResourcepartJid. isParentOf(DomainFullJid domainFullJid)
-
Uses of DomainFullJid in org.jxmpp.jid.util
Methods in org.jxmpp.jid.util that return types with arguments of type DomainFullJid Modifier and Type Method Description 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.
-