Package org.jxmpp.jid
Interface FullJid
-
- All Superinterfaces:
CharSequence
,Comparable<Jid>
,Jid
,Serializable
- All Known Subinterfaces:
DomainFullJid
,EntityFullJid
- All Known Implementing Classes:
DomainAndResourcepartJid
,LocalDomainAndResourcepartJid
public interface FullJid extends Jid
An XMPP address (JID) which has aResourcepart
. EitherEntityFullJid
orDomainFullJid
.Examples:
localpart@domain.part/resourcepart
domain.part/resourcepart
- See Also:
Jid
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Resourcepart
getResourcepart()
Return theResourcepart
of this JID.-
Methods inherited from interface java.lang.CharSequence
charAt, chars, codePoints, length, subSequence
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface org.jxmpp.jid.Jid
asBareJid, asDomainBareJid, asDomainFullJidIfPossible, asDomainFullJidOrThrow, asEntityBareJidIfPossible, asEntityBareJidOrThrow, asEntityFullJidIfPossible, asEntityFullJidOrThrow, asEntityJidIfPossible, asEntityJidOrThrow, asFullJidIfPossible, asFullJidOrThrow, asUnescapedString, asUrlEncodedString, downcast, equals, equals, getDomain, getLocalpartOrNull, getLocalpartOrThrow, getResourceOrEmpty, getResourceOrNull, getResourceOrThrow, hasLocalpart, hasNoResource, hasResource, intern, isDomainBareJid, isDomainFullJid, isEntityBareJid, isEntityFullJid, isEntityJid, isParentOf, isParentOf, isParentOf, isParentOf, isParentOf, toString
-
-
-
-
Method Detail
-
getResourcepart
Resourcepart getResourcepart()
Return theResourcepart
of this JID.- Returns:
- the resourcepart.
-
-