A representation of a generic XML node.
Implementing classes
Name | Brief description |
---|---|
Cdata | A representation of an XML CDATASection node. |
Comment | A representation of an XML Comment node. |
DocType | A representation of an XML DocumentType node. |
Element | A representation of an XML Element node. |
EntityRef | A representation of an XML EntityReference node. |
ProcessingInstruction | A representation of an XML ProcessingInstruction node. |
Text | A representation of an XML Text node. |
Methods
Method | Return type | Brief description |
---|---|---|
asCdata() | Cdata | Casts the node as a CDATASection node for the purposes of autocomplete. |
asComment() | Comment | Casts the node as a Comment node for the purposes of autocomplete. |
asDocType() | DocType | Casts the node as a DocumentType node for the purposes of autocomplete. |
asElement() | Element | Casts the node as an Element node for the purposes of autocomplete. |
asEntityRef() | EntityRef | Casts the node as a EntityReference node for the purposes of autocomplete. |
asProcessingInstruction() | ProcessingInstruction | Casts the node as a ProcessingInstruction node for the purposes of autocomplete. |
asText() | Text | Casts the node as a Text node for the purposes of autocomplete. |
detach() | Content | Detaches the node from its parent Element node. |
getParentElement() | Element | Gets the node's parent Element node. |
getType() | ContentType | Gets the node's content type. |
getValue() | String | Gets the text value of all nodes that are direct or indirect children of the node, in the order they appear in the document. |
Detailed documentation
asCdata()
Casts the node as a CDATASection
node for the purposes of autocomplete. If the
node's ContentType
is not already CDATA
, this method returns null
.
Return
Cdata
— the CDATASection
node
asComment()
Casts the node as a Comment
node for the purposes of autocomplete. If the node's
ContentType
is not already COMMENT
, this method returns null
.
Return
Comment
— the Comment
node, or null
if the node's content type is not COMMENT
asDocType()
Casts the node as a DocumentType
node for the purposes of autocomplete. If
the node's ContentType
is not already DOCTYPE
, this method returns null
.
Return
DocType
— the DocumentType
node
asElement()
Casts the node as an Element
node for the purposes of autocomplete. If the node's
ContentType
is not already ELEMENT
, this method returns null
.
Return
Element
— the Element
node
asEntityRef()
Casts the node as a EntityReference
node for the purposes of autocomplete.
If the node's ContentType
is not already ENTITYREF
, this method returns
null
.
Return
EntityRef
— the EntityReference
node
asProcessingInstruction()
Casts the node as a ProcessingInstruction
node for the purposes of autocomplete. If
the node's ContentType
is not already PROCESSINGINSTRUCTION
, this method
returns null
.
Return
ProcessingInstruction
— the ProcessingInstruction
node
asText()
Casts the node as a Text
node for the purposes of autocomplete. If the node's ContentType
is not already TEXT
, this method returns null
.
Return
Text
— the Text
node
detach()
getParentElement()
getType()
getValue()
Gets the text value of all nodes that are direct or indirect children of the node, in the order they appear in the document.
Return
String
— the text value of all nodes that are direct or indirect children of the node