Jid |
Jid.asBareJid() |
Gets the bare JID representation of this JID, i.e. removes the resource part.
|
Jid |
MalformedJid.asBareJid() |
|
Jid |
Jid.atSubdomain(CharSequence subdomain) |
Creates a new JID at a subdomain and at the same domain as this JID.
|
Jid |
MalformedJid.atSubdomain(CharSequence subdomain) |
|
static Jid |
Jid.of(CharSequence jid) |
Creates a JID from an unescaped string.
|
static Jid |
Jid.of(CharSequence local,
CharSequence domain,
CharSequence resource) |
Returns a full JID with a domain and resource part, e.g.
|
static Jid |
Jid.ofDomain(CharSequence domain) |
Creates a bare JID with only the domain part, e.g.
|
static Jid |
Jid.ofDomainAndResource(CharSequence domain,
CharSequence resource) |
Creates a full JID with a domain and resource part, e.g.
|
static Jid |
Jid.ofEscaped(CharSequence jid) |
Creates a JID from a escaped JID string.
|
static Jid |
Jid.ofLocalAndDomain(CharSequence local,
CharSequence domain) |
Creates a bare JID with a local and domain part, e.g.
|
Jid |
Jid.withLocal(CharSequence local) |
Creates a new JID with a new local part and the same domain and resource part of the current JID.
|
Jid |
MalformedJid.withLocal(CharSequence local) |
|
Jid |
Jid.withResource(CharSequence resource) |
Creates a new full JID with a resource and the same local and domain part of the current JID.
|
Jid |
MalformedJid.withResource(CharSequence resource) |
|