Class AdvancedContentHandler.Element

java.lang.Object
org.tquadrat.foundation.xml.parse.AdvancedContentHandler.Element
Enclosing class:
AdvancedContentHandler

@ClassVersion(sourceVersion="$Id: AdvancedContentHandler.java 1101 2024-02-18 00:18:48Z tquadrat $") @API(status=STABLE, since="0.1.0") protected static final class AdvancedContentHandler.Element extends Object
This class serves a container for the name, the data and the attributes of an XML element.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: AdvancedContentHandler.java 1101 2024-02-18 00:18:48Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.xml.parse.AdvancedContentHandler.Element"

UML Diagram for "org.tquadrat.foundation.xml.parse.AdvancedContentHandler.Element"

UML Diagram for "org.tquadrat.foundation.xml.parse.AdvancedContentHandler.Element"
  • Field Details

  • Constructor Details

    • Element

      Element(String qName, String localName, URI uri, Map<String,Attribute> attributes, String path, AdvancedContentHandler.Element parent)
      Create a new object of this class from an element's name and its attributes.
      Parameters:
      qName - The element's qualified name.
      localName - The element's local name.
      uri - The namespace for the element; can be null.
      attributes - The element's attributes.
      path - The path to the element; this is a string, compiled from the element's name, separated by slashes ("/").
      parent - The parent element for this element; may be null.
  • Method Details

    • appendData

      public final void appendData(char[] characters, int start, int end)
      Adds another data chunk to the data block for the current element.
      Parameters:
      characters - The characters.
      start - The start position inside the characters array.
      end - The ending position inside the array.
    • getAttributes

      public final Map<String,Attribute> getAttributes()
      Returns the attributes of the element.
      Returns:
      The attributes.
    • getData

      public final String getData()
      Returns the data block for this element.
      Returns:
      The data block.
    • getLocalName

      public final String getLocalName()
      Returns the local name of the element.
      Returns:
      The local name of the element.
    • getParent

      Returns the parent element.
      Returns:
      An instance of Optional that holds the parent element; will be empty if this element does not have a parent.
    • getPath

      public final String getPath()
      Returns to XML path to this element.
      Returns:
      The element's path.
    • getPrefix

      public final String getPrefix()
      Returns the prefix from the element's qualified name.
      Returns:
      The prefix; if there is no prefix, the empty String will be returned.
    • getQName

      public final String getQName()
      Returns the qualified name of the element.
      Returns:
      The qualified name of the element.
    • getURI

      public final Optional<URI> getURI()
      Returns the namespace URI of the element.
      Returns:
      An instance of Optional that holds the namespace URI of the element.