| Package | Description | 
|---|---|
| org.jxmpp.jid | 
 Interfaces and classes for XMPP Addresses (JIDs). 
 | 
| org.jxmpp.jid.impl | 
 JXMPP's implementation of  
Jid and it's subtypes. | 
| Modifier and Type | Interface and Description | 
|---|---|
interface  | 
DomainFullJid
An XMPP address (JID) consisting of a domainpart and a resourcepart. 
 | 
interface  | 
EntityFullJid
An XMPP address (JID) consisting of a localpart, domainpart and resourcepart. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
FullJid | 
Jid.asFullJidIfPossible()
Convert this Jid to a  
FullJid if possible. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
DomainAndResourcepartJid
RFC6122 2.4 allows JIDs with only a domain and resource part. 
 | 
class  | 
LocalDomainAndResourcepartJid  | 
| Modifier and Type | Method and Description | 
|---|---|
FullJid | 
LocalDomainAndResourcepartJid.asFullJidIfPossible()  | 
FullJid | 
DomainAndResourcepartJid.asFullJidIfPossible()  | 
FullJid | 
DomainpartJid.asFullJidIfPossible()  | 
FullJid | 
LocalAndDomainpartJid.asFullJidIfPossible()  | 
static FullJid | 
JidCreate.fullFrom(CharSequence jid)
Get a  
FullJid representing the given CharSequence. | 
static FullJid | 
JidCreate.fullFrom(Localpart localpart,
        DomainBareJid domainBareJid,
        Resourcepart resource)
Get a  
FullJid constructed from the given parts. | 
static FullJid | 
JidCreate.fullFrom(Localpart localpart,
        Domainpart domainpart,
        Resourcepart resource)
Get a  
FullJid constructed from the given parts. | 
static FullJid | 
JidCreate.fullFrom(String jid)
Get a  
FullJid representing the given String. | 
static FullJid | 
JidCreate.fullFrom(String localpart,
        String domainpart,
        String resource)
Get a  
FullJid constructed from the given parts. | 
static FullJid | 
JidCreate.fullFromOrNull(CharSequence cs)
 | 
static FullJid | 
JidCreate.fullFromOrThrowUnchecked(CharSequence cs)
Like  
JidCreate.fullFrom(CharSequence) but does throw an unchecked IllegalArgumentException instead of a
 XmppStringprepException. |