Uses of Class
org.jxmpp.jid.parts.Resourcepart
-
Packages that use Resourcepart 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.parts Classes representing JID parts (Local-, Resource- and Domainpart). -
-
Uses of Resourcepart in org.jxmpp.jid
Methods in org.jxmpp.jid that return Resourcepart Modifier and Type Method Description Resourcepart
Jid. getResourceOrEmpty()
Get the resourcepart of this JID or return the empty resourcepart.Resourcepart
Jid. getResourceOrNull()
Get the resourcepart of this JID or null.Resourcepart
Jid. getResourceOrThrow()
Get the resourcepart of this JID or throw anIllegalStateException
.Resourcepart
FullJid. getResourcepart()
Return theResourcepart
of this JID. -
Uses of Resourcepart in org.jxmpp.jid.impl
Methods in org.jxmpp.jid.impl that return Resourcepart Modifier and Type Method Description Resourcepart
AbstractJid. getResourceOrEmpty()
abstract Resourcepart
AbstractJid. getResourceOrNull()
Resourcepart
DomainAndResourcepartJid. getResourceOrNull()
Resourcepart
DomainpartJid. getResourceOrNull()
Resourcepart
LocalAndDomainpartJid. getResourceOrNull()
Resourcepart
LocalDomainAndResourcepartJid. getResourceOrNull()
Resourcepart
AbstractJid. getResourceOrThrow()
Resourcepart
DomainAndResourcepartJid. getResourcepart()
Resourcepart
LocalDomainAndResourcepartJid. getResourcepart()
Methods in org.jxmpp.jid.impl with parameters of type Resourcepart Modifier and Type Method Description 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 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 FullJid
JidCreate. fullFrom(BareJid bareJid, Resourcepart resource)
static FullJid
JidCreate. fullFrom(Localpart localpart, DomainBareJid domainBareJid, Resourcepart resource)
Get aFullJid
constructed from the given parts.static FullJid
JidCreate. fullFrom(Localpart localpart, Domainpart domainpart, Resourcepart resource)
Get aFullJid
constructed from the given parts. -
Uses of Resourcepart in org.jxmpp.jid.parts
Fields in org.jxmpp.jid.parts declared as Resourcepart Modifier and Type Field Description static Resourcepart
Resourcepart. EMPTY
The empty resource part.Methods in org.jxmpp.jid.parts that return Resourcepart Modifier and Type Method Description static Resourcepart
Resourcepart. from(String resource)
Get theResourcepart
representing the input String.static Resourcepart
Resourcepart. from(String resource, JxmppContext context)
Get theResourcepart
representing the input String.static Resourcepart
Resourcepart. fromOrNull(CharSequence cs)
static Resourcepart
Resourcepart. fromOrThrowUnchecked(CharSequence cs)
Likefrom(String)
but does throw an uncheckedIllegalArgumentException
instead of aXmppStringprepException
.
-