Record Class Attribute

java.lang.Object
java.lang.Record
org.tquadrat.foundation.xml.parse.Attribute
Record Components:
qName - The XML qualified (prefixed) name for the attribute.
localName - An instance of Optional that holds the local name for the attribute; will be empty if Namespace processing is not being performed.
uri - An instance Optional that holds the Namespace URI for the attribute; will be empty if none is available.
type - The attribute type. If the parser has not read a declaration for the attribute, or if the parser does not report attribute types, then it must return the value CDATA as stated in the XML 1.0 Recommendation (clause 3.3.3, "Attribute-Value Normalization"). For an enumerated attribute that is not a notation (NOTATION), the parser will report the type as NMTOKEN.
value - The value of the attribute.
index - The index of the attribute in the attributes list for the element.

@ClassVersion(sourceVersion="$Id: Attribute.java 1030 2022-04-06 13:42:02Z tquadrat $") @API(status=STABLE, since="0.1.0") public record Attribute(String qName, Optional<String> localName, Optional<URI> uri, Attribute.Type type, String value, int index) extends Record
An attribute.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Attribute.java 1030 2022-04-06 13:42:02Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.xml.parse.Attribute"

UML Diagram for "org.tquadrat.foundation.xml.parse.Attribute"

UML Diagram for "org.tquadrat.foundation.xml.parse.Attribute"