Package ch.rabanti.nanoxlsx4j.lowLevel
Class XmlDocument.XmlNode
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.XmlDocument.XmlNode
- Enclosing class:
- XmlDocument
Class representing a single XML node with possible attributes and sub-nodes
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAttribute
(String targetName) Gets the XML attribute of the current node by its namegetAttribute
(String targetName, String fallbackValue) Gets the XML attribute of the current node by its nameGets the child nodes of this nodegetElementsByTagName
(String name, boolean recursively) Gets a list of sub-nodes with the defined nameGets the inner plain text of the node, if availablegetName()
Gets the (tag) name of the XML nodeboolean
Gets whether child nodes are available in this nodestatic XmlDocument.XmlNode
loadXmlNode
(XMLStreamReader reader) Static method to resolve attributes and sub-nodes recursively
-
Constructor Details
-
XmlNode
Constructor with definition of the node (tag) name- Parameters:
name
- Name of the node
-
-
Method Details
-
getChildNodes
Gets the child nodes of this node- Returns:
- List of XML nodes
-
getName
Gets the (tag) name of the XML node- Returns:
- Name as string
-
getInnerText
Gets the inner plain text of the node, if available- Returns:
- Text between the start and end tag of this XML node
-
hasChildNodes
public boolean hasChildNodes()Gets whether child nodes are available in this node- Returns:
- True if sub-nodes exist
-
getAttribute
Gets the XML attribute of the current node by its name- Parameters:
targetName
- Name of the target attribute- Returns:
- Attribute value as string or default value if not found (can be null)
-
getAttribute
Gets the XML attribute of the current node by its name- Parameters:
targetName
- Name of the target attributefallbackValue
- Optional fallback value if the attribute was not found- Returns:
- Attribute value as string or default value if not found (can be null)
-
getElementsByTagName
Gets a list of sub-nodes with the defined name- Parameters:
name
- (Tag) name of the XML noderecursively
- If true, all levels are considered, otherwise only the current level (sub-nodes of current node)- Returns:
- XmlNodeList object
-
loadXmlNode
Static method to resolve attributes and sub-nodes recursively- Parameters:
reader
- XML stream reader (reference)- Returns:
- Resolved XML node with possible attributes and sub-nodes
- Throws:
XMLStreamException
- Throws IOException in case of a stream error
-