XMLNode - Scoped, Global
-
- UpdatedJan 30, 2025
- 4 minutes to read
- Yokohama
- API reference
The XMLNode API provides methods to query values from XML nodes. XMLNodes are extracted from XMLDocument2 objects, which contain XML strings.
There are no constructors for creating a stand alone instance of an XMLNode object. Instead, use the createElement() method of XMLDocument2, which adds a node to an existing document.
Scoped XMLNode - getAttribute(String attribute)
Gets the value of the attribute.
Name | Type | Description |
---|---|---|
attribute | String | Name of the attribute. |
Type | Description |
---|---|
String | The attribute's value. |
Example
Output:
Scoped XMLNode - getAttributes()
Returns an object containing the node's attributes as properties with values.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
Object | Contains name-value pairs where the name is the attribute and the value is the attribute's value. |
Scoped XMLNode - getChildNodeIterator()
Gets a XMLNodeIterator object that can be used to walk through the list of child nodes.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
XMLNodeIterator | The node iterator object. |
Example
Scoped XMLNode - getFirstChild()
Gets the node's first child node.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
XMLNode | The node's first child node. |
Example
Scoped XMLNode - getLastChild()
Gets the node's last child node.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
XMLNode | The node's last child. |
Example
Scoped XMLNode - getNodeName()
Gets the node's name. A node's name is determined by the node type. A document-element node's name is #document. A text node's name is #text. An element node's name is the element's name.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The node's name. |
Example
Output:
Scoped XMLNode - getNodeValue()
Gets the node's value. A node's value is determined by the node type. Element and document-element nodes return null.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The node's value. |
Example
Output:
Scoped XMLNode - getTextContent()
Gets the text content of the current node. The text content of a node consists of all the node's child text nodes
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The text content of the current node. |
Example
Output:
Scoped XMLNode - hasAttribute(String attribute)
Determines if the node has the specified attribute.
Name | Type | Description |
---|---|---|
attribute | String | The name of the attribute to check. |
Type | Description |
---|---|
Boolean | True if the node has the attribute. |
Example
Output:
Scoped XMLNode - isCDATANode()
Indicates whether the CDATA node is preserved as a separate node.
Use the Scoped XMLDocument2 - setEnableCDATAReporting(Boolean enable) method to ensure that CDATA nodes are preserved and not handled as text.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
Boolean | Flag that indicates whether a queried node is CDATA or plain text. Valid values:
|
Example
The following example shows how to parse an XML string with CDATA reporting enabled using Scoped XMLDocument2 - setEnableCDATAReporting(Boolean enable). The code uses isCDATANode() to show that the first node queried in the XML string is a CDATA node.
Output:
Scoped XMLNode - toString()
Returns the string value of the current node.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | The string value of the current node. |
Example
On this page
- Scoped XMLNode - getAttribute(String attribute)
- Scoped XMLNode - getAttributes()
- Scoped XMLNode - getChildNodeIterator()
- Scoped XMLNode - getFirstChild()
- Scoped XMLNode - getLastChild()
- Scoped XMLNode - getNodeName()
- Scoped XMLNode - getNodeValue()
- Scoped XMLNode - getTextContent()
- Scoped XMLNode - hasAttribute(String attribute)
- Scoped XMLNode - isCDATANode()
- Scoped XMLNode - toString()