Index

A C D E F G H I K L M N O P Q R S T U V W X 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

C

CDATA - Enum constant in enum class org.tquadrat.foundation.xml.parse.Attribute.Type
Character data.
characters(char[], int, int) - Method in class org.tquadrat.foundation.xml.parse.AdvancedContentHandler
Receives notification of character data inside an element.
checksIfValid() - Method in class org.tquadrat.foundation.xml.builder.spi.AttributeSupport
Returns a flag that indicates whether an extended validity check is performed on attributes before adding them.
checksIfValid() - Method in class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Returns a flag that indicates whether an extended validity check is performed on child elements before adding them.
checkValid(String) - Method in class org.tquadrat.foundation.xml.builder.spi.AttributeSupport
Checks whether an attribute with the given name is valid for the owning element.
checkValid(Element, String) - Method in class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Checks whether a child is valid for the element that owns this ChildSupport instance.
ChildSupport - Class in org.tquadrat.foundation.xml.builder.spi
This class provides the support for child elements and text to elements.
ChildSupport(Element) - Constructor for class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Creates a new ChildSupport instance for comments only.
ChildSupport(Element, boolean) - Constructor for class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Creates a new ChildSupport instance that allows child elements, but no text.
ChildSupport(Element, boolean, boolean, boolean, Function<CharSequence, String>) - Constructor for class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Creates a new ChildSupport instance.
ChildSupport(Element, Function<CharSequence, String>) - Constructor for class org.tquadrat.foundation.xml.builder.spi.ChildSupport
Creates a new ChildSupport instance that allows text, but no child elements.
Comment - Class in org.tquadrat.foundation.xml.builder.internal
This class defines a SGML comment.
Comment(CharSequence) - Constructor for class org.tquadrat.foundation.xml.builder.internal.Comment
Creates a new Comment object.
compareTo(Namespace) - Method in class org.tquadrat.foundation.xml.builder.Namespace
composeAttribute(Attributes, int) - Static method in class org.tquadrat.foundation.xml.parse.AdvancedContentHandler
Composes an Attribute instance from the data of the given Attributes instance at the given index.
composeAttributesString(int, boolean, String, Map<String, String>, Collection<Namespace>) - Static method in class org.tquadrat.foundation.xml.builder.spi.SGMLPrinter
Returns the attributes and their values, together with the namespaces, as a single formatted string.
composeChildrenString(int, boolean, Element, Collection<? extends Element>) - Static method in class org.tquadrat.foundation.xml.builder.spi.SGMLPrinter
Returns the children as a single formatted string.
composeDocumentString(boolean, Document<? extends Element>) - Static method in class org.tquadrat.foundation.xml.builder.spi.SGMLPrinter
Returns the given document as a single formatted string.
composeElementName(String) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
Composes the name of an XML element from the prefix and the given element name.

The given element name is validated using the method that is provided by XMLBuilderUtils.getElementNameValidator().
composeElementString(int, boolean, Element, boolean) - Static method in class org.tquadrat.foundation.xml.builder.spi.SGMLPrinter
Returns the given element as a single formatted string.
composeNamespaceString(int, boolean, String, Collection<Namespace>) - Static method in class org.tquadrat.foundation.xml.builder.spi.SGMLPrinter
Returns the namespaces as a single formatted string.
composeXMLHeader(Charset, boolean) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Composes the ProcessingInstruction for the XML file header.
createProcessingInstruction(String) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
createProcessingInstruction(String, CharSequence) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
createProcessingInstruction(XMLDocument, String) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
createProcessingInstruction(XMLDocument, String, CharSequence) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
createReader(InputSource) - Method in class org.tquadrat.foundation.xml.parse.AbstractXMLReader
Creates a buffered reader from the given input source.
createXMLDocument() - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that will not have an explicit doc type, the root element will be <root>
createXMLDocument(String) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that uses the given element name for the root element.
createXMLDocument(XMLElement) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that uses the given element for the root element.
createXMLDocument(XMLElement, boolean) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that uses the given element for the root element.
createXMLDocument(XMLElement, Charset, String, URI) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that uses the given element for the root element with the given encoding and DTD.
createXMLDocument(XMLElement, Charset, URI) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML document that uses the given element for the root element with the given encoding and DTD.
createXMLElement(String) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
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 by XMLBuilderUtils.getElementNameValidator().

The new element allows attributes and children, but will not validate them.
createXMLElement(String) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
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 by XMLBuilderUtils.getElementNameValidator().
createXMLElement(String, CharSequence) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
Creates an XML element for the given element name that supports attributes, namespaces, children, text, CDATA and comments, and add the given text.
createXMLElement(String, CharSequence) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
Creates an XML element for the given element name that supports attributes, namespaces, children, text, CDATA and comments, and adds the given text.
createXMLElement(String, XMLDocument) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
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 by XMLBuilderUtils.getElementNameValidator().

The new element allows attributes and children, but will not validate them.
createXMLElement(String, XMLDocument) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
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 by XMLBuilderUtils.getElementNameValidator().
createXMLElement(String, XMLDocument, CharSequence) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
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 by XMLBuilderUtils.getElementNameValidator().

The new element allows attributes and children, but will not validate them.
createXMLElement(String, XMLDocument, CharSequence) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
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 by XMLBuilderUtils.getElementNameValidator().
createXMLElement(String, XMLElement) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
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 by XMLBuilderUtils.getElementNameValidator().

The new element allows attributes and children, but will not validate them.
createXMLElement(String, XMLElement) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
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 by XMLBuilderUtils.getElementNameValidator().
createXMLElement(String, XMLElement, CharSequence) - Static method in class org.tquadrat.foundation.xml.builder.XMLBuilderUtils
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 by XMLBuilderUtils.getElementNameValidator().

The new element allows attributes and children, but will not validate them.
createXMLElement(String, XMLElement, CharSequence) - Method in interface org.tquadrat.foundation.xml.builder.XMLElementFactory
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 by XMLBuilderUtils.getElementNameValidator().
A C D E F G H I K L M N O P Q R S T U V W X 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form