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 ofOptional
that holds the local name for the attribute; will be empty if Namespace processing is not being performed.uri
- An instanceOptional
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 valueCDATA
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 asNMTOKEN
.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"
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
The field for theindex
record component.The field for thelocalName
record component.private final String
The field for theqName
record component.private final Attribute.Type
The field for thetype
record component.The field for theuri
record component.private final String
The field for thevalue
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.If the attribute is of typeAttribute.Type.ENTITY
orAttribute.Type.ENTITIES
, this method will return a list of the entity values.If the attribute is of typeAttribute.Type.IDREF
orAttribute.Type.IDREFS
, this method will return a list of the ID references.If the attribute is of typeAttribute.Type.NMTOKEN
orAttribute.Type.NMTOKENS
, this method will return a list of the name tokens.final int
hashCode()
Returns a hash code value for this object.int
index()
Returns the value of theindex
record component.Returns the value of thelocalName
record component.qName()
Returns the value of theqName
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.uri()
Returns the value of theuri
record component.value()
Returns the value of thevalue
record component.
-
Field Details
-
Constructor Details
-
Attribute
public Attribute(String qName, Optional<String> localName, Optional<URI> uri, Attribute.Type type, String value, int index) Creates an instance of aAttribute
record class.- Parameters:
qName
- the value for theqName
record componentlocalName
- the value for thelocalName
record componenturi
- the value for theuri
record componenttype
- the value for thetype
record componentvalue
- the value for thevalue
record componentindex
- the value for theindex
record component
-
-
Method Details
-
getEntities
If the attribute is of typeAttribute.Type.ENTITY
orAttribute.Type.ENTITIES
, this method will return a list of the entity values.- Returns:
- The entity values; the return value is empty, if the attribute
is not of type
Attribute.Type.ENTITY
orAttribute.Type.ENTITIES
.
-
getIDReferences
If the attribute is of typeAttribute.Type.IDREF
orAttribute.Type.IDREFS
, this method will return a list of the ID references.- Returns:
- The ID references; the return value is empty, if the attribute
is not of type
Attribute.Type.IDREF
orAttribute.Type.IDREFS
.
-
getNameTokens
If the attribute is of typeAttribute.Type.NMTOKEN
orAttribute.Type.NMTOKENS
, this method will return a list of the name tokens.- Returns:
- The name tokens; the return value is empty, if the attribute
is not of type
Attribute.Type.NMTOKEN
orAttribute.Type.NMTOKENS
,
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
qName
Returns the value of theqName
record component.- Returns:
- the value of the
qName
record component
-
localName
Returns the value of thelocalName
record component.- Returns:
- the value of the
localName
record component
-
uri
Returns the value of theuri
record component.- Returns:
- the value of the
uri
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
index
Returns the value of theindex
record component.- Returns:
- the value of the
index
record component
-