Package | org.igniterealtime.xiff.core |
Class | public class UnescapedJID |
Inheritance | UnescapedJID ![]() |
Property | Defined by | ||
---|---|---|---|
![]() | bareJID : String
The JID without the resource.
| AbstractJID | |
![]() | domain : String
The domain portion of the JID.
| AbstractJID | |
escaped : EscapedJID
[read-only]
The unescaped JID in escaped form.
| UnescapedJID | ||
![]() | node : String
The node portion of the JID.
| AbstractJID | |
![]() | resource : String
The resource portion of the JID.
| AbstractJID |
Method | Defined by | ||
---|---|---|---|
UnescapedJID(inJID:String, validate:Boolean = false)
Creates a new UnescapedJID object.
| UnescapedJID | ||
equals(testJID:UnescapedJID, shouldTestBareJID:Boolean):Boolean
Determines if two unescaped JIDs are equivalent.
| UnescapedJID | ||
![]() |
escapedNode(n:String):String
[static]
Provides functionality to convert a JID to an escaped format.
| AbstractJID | |
![]() |
toString():String
Converts JID represented by this class to a String.
| AbstractJID | |
![]() |
unescapedNode(n:String):String
[static]
Provides functionality to return an escaped JID into a normal String.
| AbstractJID |
escaped | property |
escaped:EscapedJID
[read-only]The unescaped JID in escaped form.
Implementation public function get escaped():EscapedJID
UnescapedJID | () | constructor |
public function UnescapedJID(inJID:String, validate:Boolean = false)
Creates a new UnescapedJID object.
ParametersinJID:String — The JID in String form.
|
|
validate:Boolean (default = false ) — Will validate the JID string if true. Invalid
JIDs will throw an error.
|
equals | () | method |
public function equals(testJID:UnescapedJID, shouldTestBareJID:Boolean):Boolean
Determines if two unescaped JIDs are equivalent.
ParameterstestJID:UnescapedJID — The JID with which to test equivalency.
|
|
shouldTestBareJID:Boolean |
Boolean — True if the JIDs are equivalent.
|