Uses of Interface
org.tquadrat.foundation.xml.builder.XMLElement
Packages that use XMLElement
Package
Description
Classes for builder XML elements and documents.
The internal classes for the implementation of the XML builder tools.
Several classes that are not part of the API for the XML
builder tools, but required to implement tools for other, XML-derived
languages, like SVG or HTML.
-
Uses of XMLElement in org.tquadrat.foundation.xml.builder
Fields in org.tquadrat.foundation.xml.builder declared as XMLElementModifier and TypeFieldDescriptionstatic final XMLElement[]
XMLElement.EMPTY_XMLElement_ARRAY
An empty array ofXMLElement
objects.Methods in org.tquadrat.foundation.xml.builder with type parameters of type XMLElementModifier and TypeMethodDescriptiondefault <E extends XMLElement>
XMLElementXMLElement.addChild
(E child) Adds a child to this element.Methods in org.tquadrat.foundation.xml.builder that return XMLElementModifier and TypeMethodDescriptiondefault XMLElement
XMLElement.addCDATA
(boolean flag) Adds the providedboolean
value as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(char c) Adds the providedchar
value as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(double number) Adds the provideddouble
value as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(int number) Adds the providedint
value as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(long number) Adds the providedlong
value as aCDATA
element to this XML element.default <E extends Enum<E>>
XMLElementXMLElement.addCDATA
(E value) Adds the providedenum
instance as aCDATA
element to this XML element.default XMLElement
Adds the providedBoolean
instance as aCDATA
element to this XML element.default XMLElement
Adds the providedCharacter
instance as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(CharSequence text) Adds aCDATA
element to this XML element.default XMLElement
Adds the providedNumber
instance as aCDATA
element to this XML element.default XMLElement
Adds the providedInstant
instance as aCDATA
element to this XML element.default XMLElement
Adds the providedLocalDate
instance as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(LocalDateTime date) Adds the providedLocalDateTime
instance as aCDATA
element to this XML element.default XMLElement
XMLElement.addCDATA
(ZonedDateTime date) Adds the providedZonedDateTime
instance as aCDATA
element to this XML element.default <E extends XMLElement>
XMLElementXMLElement.addChild
(E child) Adds a child to this element.default XMLElement
XMLElement.addComment
(CharSequence comment) Adds a comment.default XMLElement
XMLElement.addPredefinedMarkup
(CharSequence markup) Adds predefined markup.default XMLElement
XMLElement.addText
(boolean flag) Adds the providedboolean
value as text to this element.default XMLElement
XMLElement.addText
(char c) Adds the providedchar
value as text to this element.default XMLElement
XMLElement.addText
(double number) Adds the provideddouble
value as text to this element.default XMLElement
XMLElement.addText
(int number) Adds the providedint
value as text to this element.default XMLElement
XMLElement.addText
(long number) Adds the providedlong
value as text to this element.default <E extends Enum<E>>
XMLElementXMLElement.addText
(E value) Adds the providedenum
instance as text element to this element.default XMLElement
Adds the providedBoolean
instance as text to this element.default XMLElement
Adds the providedCharacter
instance as text to this element.default XMLElement
XMLElement.addText
(CharSequence text) Adds text to this element.default XMLElement
Adds the providedNumber
instance as text to this element.default XMLElement
Adds the providedInstant
instance as text to this element.default XMLElement
Adds the providedLocalDate
instance as text to this element.default XMLElement
XMLElement.addText
(LocalDateTime date) Adds the providedLocalDateTime
instance as text to this element.default XMLElement
XMLElement.addText
(ZonedDateTime date) Adds the providedZonedDateTime
instance as text to this element.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and add the given text.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLDocument parent) Creates an XML element for the given tag and adds it as child to the given document.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLDocument parent, CharSequence text) Creates an XML element for the given tag and with the given text, and adds it as child to the given document.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLElement parent) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLElement parent, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, adds the given text, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.default XMLElement
XMLElementFactory.createXMLElement
(String elementName) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and adds the given text.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLDocument parent) Creates an XML element for the given tag and adds it as child to the given document.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLDocument parent, CharSequence text) Creates an XML element for the given tag and with the given text, and adds it as child to the given document.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLElement parent) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLElement parent, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, adds the given text, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElement.setAttribute
(String name, boolean flag) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, double number) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, int number) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, long number) Sets the attribute with the given name.default <E extends Enum<E>>
XMLElementXMLElement.setAttribute
(String name, E enumValue) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, Boolean flag) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, CharSequence value) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, CharSequence value, Optional<? extends CharSequence> append) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, Number number) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, Instant date) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, LocalDate date) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, LocalDateTime date) Sets the attribute with the given name.default XMLElement
XMLElement.setAttribute
(String name, ZonedDateTime date) Sets the attribute with the given name.default XMLElement
XMLElement.setAttributeIfNotEmpty
(String name, CharSequence value) Sets the attribute with the given name if the provided value is not empty.default XMLElement
XMLElement.setAttributeIfNotEmpty
(String name, Optional<? extends CharSequence> optional) Sets the attribute with the given name if the provided value is not empty.default XMLElement
Sets the id for the element.default XMLElement
XMLElement.setNamespace
(String identifier) Sets the given namespace.default XMLElement
XMLElement.setNamespace
(String prefix, String identifier) Sets the given namespace.default XMLElement
XMLElement.setNamespace
(String prefix, URI identifier) Sets the given namespace.default XMLElement
XMLElement.setNamespace
(URI identifier) Sets the given namespace.default XMLElement
XMLElement.setNamespace
(Namespace namespace) Sets the given namespace.Methods in org.tquadrat.foundation.xml.builder with parameters of type XMLElementModifier and TypeMethodDescriptiondefault XMLDocument
XMLDocument.addChild
(XMLElement child) Adds a child to the root element of this document.static final XMLDocument
XMLBuilderUtils.createXMLDocument
(XMLElement rootElement) Creates an XML document that uses the given element for the root element.static final XMLDocument
XMLBuilderUtils.createXMLDocument
(XMLElement rootElement, boolean standalone) Creates an XML document that uses the given element for the root element.static final XMLDocument
XMLBuilderUtils.createXMLDocument
(XMLElement rootElement, Charset encoding, String name, URI uri) Creates an XML document that uses the given element for the root element with the given encoding and DTD.static final XMLDocument
XMLBuilderUtils.createXMLDocument
(XMLElement rootElement, Charset encoding, URI uri) Creates an XML document that uses the given element for the root element with the given encoding and DTD.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLElement parent) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.static final XMLElement
XMLBuilderUtils.createXMLElement
(String elementName, XMLElement parent, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, adds the given text, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.
The new element allows attributes and children, but will not validate them.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLElement parent) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
.default XMLElement
XMLElementFactory.createXMLElement
(String elementName, XMLElement parent, CharSequence text) Creates an XML element for the given element name that supports attributes, namespaces, children, text,CDATA
and comments, adds the given text, and adds it as child to the given parent.
The given element name is validated using the method that is provided byXMLBuilderUtils.getElementNameValidator()
. -
Uses of XMLElement in org.tquadrat.foundation.xml.builder.internal
Classes in org.tquadrat.foundation.xml.builder.internal that implement XMLElementModifier and TypeClassDescriptionclass
An implementation ofXMLElement
that supports attributes, namespaces, children, text,CDATA
and comments.Methods in org.tquadrat.foundation.xml.builder.internal with type parameters of type XMLElementModifier and TypeMethodDescriptionfinal <E extends XMLElement>
XMLElementXMLElementImpl.addChild
(E child) Adds a child to this element.Methods in org.tquadrat.foundation.xml.builder.internal that return XMLElementModifier and TypeMethodDescriptionfinal XMLElement
XMLElementImpl.addCDATA
(CharSequence text) Adds aCDATA
element to this XML element.final <E extends XMLElement>
XMLElementXMLElementImpl.addChild
(E child) Adds a child to this element.final XMLElement
XMLElementImpl.addComment
(CharSequence comment) Adds a comment.final XMLElement
XMLElementImpl.addPredefinedMarkup
(CharSequence markup) Adds predefined markup.final XMLElement
XMLElementImpl.addText
(CharSequence text) Adds text to this element.final XMLElement
XMLDocumentImpl.getRootElement()
Return the root element for this document.final XMLElement
XMLElementImpl.setAttribute
(String name, CharSequence value, Optional<? extends CharSequence> append) Sets the attribute with the given name.final XMLElement
XMLElementImpl.setNamespace
(String identifier) Sets the given namespace.final XMLElement
XMLElementImpl.setNamespace
(String prefix, String identifier) Sets the given namespace.final XMLElement
XMLElementImpl.setNamespace
(String prefix, URI identifier) Sets the given namespace.final XMLElement
XMLElementImpl.setNamespace
(URI identifier) Sets the given namespace.final XMLElement
XMLElementImpl.setNamespace
(Namespace namespace) Sets the given namespace.Constructors in org.tquadrat.foundation.xml.builder.internal with parameters of type XMLElementModifierConstructorDescriptionXMLDocumentImpl
(XMLElement rootElement, boolean standalone) Creates a newXMLDocumentImpl
instance.
The resulting document will do not have an explicit doc type, the encoding is defined as UTF-8.XMLDocumentImpl
(XMLElement rootElement, Charset encoding, String name, URI uri) Creates a newXMLDocumentImpl
instance.XMLDocumentImpl
(XMLElement rootElement, Charset encoding, URI uri) Creates a newXMLDocumentImpl
instance. -
Uses of XMLElement in org.tquadrat.foundation.xml.builder.spi
Classes in org.tquadrat.foundation.xml.builder.spi that implement XMLElementModifier and TypeClassDescriptionclass
The abstract base class for specialised implementations ofXMLElement
.