Uses of Interface
org.jxmpp.jid.EntityFullJid
-
Packages that use EntityFullJid 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 EntityFullJid in org.jxmpp.jid
Methods in org.jxmpp.jid that return EntityFullJid Modifier and Type Method Description EntityFullJid
Jid. asEntityFullJidIfPossible()
Convert this Jid to aEntityFullJid
if possible.EntityFullJid
Jid. asEntityFullJidOrThrow()
Convert this Jid to aEntityFullJid
or throw anIllegalStateException
if this is not possible.EntityFullJid
Jid. asFullJidOrThrow()
Convert this Jid to aFullJid
or throw anIllegalStateException
if this is not possible.Methods in org.jxmpp.jid with parameters of type EntityFullJid Modifier and Type Method Description boolean
Jid. isParentOf(EntityFullJid fullJid)
SeeJid.isParentOf(Jid)
. -
Uses of EntityFullJid in org.jxmpp.jid.impl
Classes in org.jxmpp.jid.impl that implement EntityFullJid Modifier and Type Class Description class
LocalDomainAndResourcepartJid
Methods in org.jxmpp.jid.impl that return EntityFullJid Modifier and Type Method Description EntityFullJid
DomainAndResourcepartJid. asEntityFullJidIfPossible()
EntityFullJid
DomainpartJid. asEntityFullJidIfPossible()
EntityFullJid
LocalAndDomainpartJid. asEntityFullJidIfPossible()
EntityFullJid
LocalDomainAndResourcepartJid. asEntityFullJidIfPossible()
EntityFullJid
AbstractJid. asEntityFullJidOrThrow()
EntityFullJid
AbstractJid. asFullJidOrThrow()
static EntityFullJid
JidCreate. entityFullFrom(CharSequence jid)
Get aEntityFullJid
representing the given CharSequence.static EntityFullJid
JidCreate. entityFullFrom(String jid)
Get aEntityFullJid
representing the given String.static EntityFullJid
JidCreate. entityFullFrom(String localpart, String domainpart, String resource)
Get aEntityFullJid
constructed from the given parts.static EntityFullJid
JidCreate. entityFullFrom(String localpart, String domainpart, String resource, JxmppContext context)
Get aEntityFullJid
constructed from the given parts.static EntityFullJid
JidCreate. entityFullFrom(EntityBareJid bareJid, Resourcepart resource)
static EntityFullJid
JidCreate. entityFullFrom(Localpart localpart, DomainBareJid domainBareJid, Resourcepart resource)
Get aEntityFullJid
constructed from the given parts.static EntityFullJid
JidCreate. entityFullFrom(Localpart localpart, Domainpart domainpart, Resourcepart resource)
Get aEntityFullJid
constructed from the given parts.static EntityFullJid
JidCreate. entityFullFromOrNull(CharSequence cs)
static EntityFullJid
JidCreate. entityFullFromOrThrowUnchecked(CharSequence cs)
LikeJidCreate.entityFullFrom(CharSequence)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.static EntityFullJid
JidCreate. entityFullFromUnescaped(CharSequence unescapedJid)
Get aEntityFullJid
representing the given unescaped CharSequence.static EntityFullJid
JidCreate. entityFullFromUnescaped(String unescapedJidString)
Get aEntityFullJid
representing the given unescaped String.static EntityFullJid
JidCreate. entityFullFromUnescaped(String unescapedJidString, JxmppContext context)
Get aEntityFullJid
representing the given unescaped String.static EntityFullJid
JidCreate. entityFullFromUnescapedOrNull(CharSequence cs)
static EntityFullJid
JidCreate. entityFullFromUnescapedOrThrowUnchecked(CharSequence cs)
LikeJidCreate.entityFullFromUnescaped(CharSequence)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.static EntityFullJid
JidCreate. entityFullFromUrlEncoded(CharSequence cs)
Get aEntityFullJid
from an URL encoded CharSequence.Methods in org.jxmpp.jid.impl with parameters of type EntityFullJid Modifier and Type Method Description boolean
DomainAndResourcepartJid. isParentOf(EntityFullJid fullJid)
boolean
DomainpartJid. isParentOf(EntityFullJid fullJid)
boolean
LocalAndDomainpartJid. isParentOf(EntityFullJid fullJid)
boolean
LocalDomainAndResourcepartJid. isParentOf(EntityFullJid fullJid)
-
Uses of EntityFullJid in org.jxmpp.jid.util
Methods in org.jxmpp.jid.util that return types with arguments of type EntityFullJid Modifier and Type Method Description 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.
-