Uses of Interface
org.tquadrat.foundation.xml.builder.ProcessingInstruction
Packages that use ProcessingInstruction
Package
Description
Classes for builder XML elements and documents.
The internal classes for the implementation of the XML builder tools.
-
Uses of ProcessingInstruction in org.tquadrat.foundation.xml.builder
Methods in org.tquadrat.foundation.xml.builder that return ProcessingInstructionModifier and TypeMethodDescriptionProcessingInstruction.addData
(CharSequence data) Adds data to the processing instruction.static final ProcessingInstruction
XMLBuilderUtils.composeXMLHeader
(Charset encoding, boolean standalone) Composes theProcessingInstruction
for the XML file header.static final ProcessingInstruction
XMLBuilderUtils.createProcessingInstruction
(String elementName) Creates aProcessingInstruction
.static final ProcessingInstruction
XMLBuilderUtils.createProcessingInstruction
(String elementName, CharSequence data) Creates aProcessingInstruction
.static final ProcessingInstruction
XMLBuilderUtils.createProcessingInstruction
(XMLDocument parent, String elementName) Creates aProcessingInstruction
.static final ProcessingInstruction
XMLBuilderUtils.createProcessingInstruction
(XMLDocument parent, String elementName, CharSequence data) Creates aProcessingInstruction
.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, boolean flag) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, double number) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, int number) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, long number) Sets the attribute with the given name.default <E extends Enum<E>>
ProcessingInstructionProcessingInstruction.setAttribute
(String name, E enumValue) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, Boolean flag) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, CharSequence value) Sets the attribute with the given name.ProcessingInstruction.setAttribute
(String name, CharSequence value, Optional<? extends CharSequence> append) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, Number number) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, Instant date) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, LocalDate date) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, LocalDateTime date) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttribute
(String name, ZonedDateTime date) Sets the attribute with the given name.default ProcessingInstruction
ProcessingInstruction.setAttributeIfNotEmpty
(String name, CharSequence value) Sets the attribute with the given name if the provided value is not empty.default ProcessingInstruction
ProcessingInstruction.setAttributeIfNotEmpty
(String name, Optional<? extends CharSequence> optional) Sets the attribute with the given name if the provided value is not empty.Methods in org.tquadrat.foundation.xml.builder with parameters of type ProcessingInstructionModifier and TypeMethodDescriptiondefault XMLDocument
XMLDocument.addProcessingInstruction
(ProcessingInstruction processingInstruction) Adds a processing instruction to this document. -
Uses of ProcessingInstruction in org.tquadrat.foundation.xml.builder.internal
Classes in org.tquadrat.foundation.xml.builder.internal that implement ProcessingInstructionModifier and TypeClassDescriptionfinal class
The implementation for the interfaceProcessingInstruction
.Methods in org.tquadrat.foundation.xml.builder.internal that return ProcessingInstructionModifier and TypeMethodDescriptionfinal ProcessingInstruction
ProcessingInstructionImpl.addData
(CharSequence data) Adds data to the processing instruction.final ProcessingInstruction
ProcessingInstructionImpl.setAttribute
(String name, CharSequence value, Optional<? extends CharSequence> append) Sets the attribute with the given name.Methods in org.tquadrat.foundation.xml.builder.internal with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionfinal XMLDocument
XMLDocumentImpl.addProcessingInstruction
(ProcessingInstruction processingInstruction) Adds a processing instruction to this document.