Class XmlDocument.XmlNode

java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.XmlDocument.XmlNode
Enclosing class:
XmlDocument

public static class XmlDocument.XmlNode extends Object
Class representing a single XML node with possible attributes and sub-nodes
  • Constructor Details

    • XmlNode

      public XmlNode(String name)
      Constructor with definition of the node (tag) name
      Parameters:
      name - Name of the node
  • Method Details

    • getChildNodes

      public XmlDocument.XmlNodeList getChildNodes()
      Gets the child nodes of this node
      Returns:
      List of XML nodes
    • getName

      public String getName()
      Gets the (tag) name of the XML node
      Returns:
      Name as string
    • getInnerText

      public 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

      public String getAttribute(String targetName)
      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

      public String getAttribute(String targetName, String fallbackValue)
      Gets the XML attribute of the current node by its name
      Parameters:
      targetName - Name of the target attribute
      fallbackValue - Optional fallback value if the attribute was not found
      Returns:
      Attribute value as string or default value if not found (can be null)
    • getElementsByTagName

      public XmlDocument.XmlNodeList getElementsByTagName(String name, boolean recursively)
      Gets a list of sub-nodes with the defined name
      Parameters:
      name - (Tag) name of the XML node
      recursively - If true, all levels are considered, otherwise only the current level (sub-nodes of current node)
      Returns:
      XmlNodeList object
    • loadXmlNode

      public static XmlDocument.XmlNode loadXmlNode(XMLStreamReader reader) throws XMLStreamException
      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