Module net.luis.utils
Package net.luis.utils.io.data.xml
package net.luis.utils.io.data.xml
-
ClassDescriptionRepresents an xml attribute.
An xml attribute consists of a name and a value.
The name and the value are both strings.Represents a collection of xml attributes.
The class provides methods to query, add, remove, replace, and get attributes.Configuration for reading and writing xml elements.Represents an xml container element.
A container element can contain other elements.Represents an xml declaration.Represents a xml element.
A xml element can be a self-closing element, a container element or a value element.Represents a collection of xml elements.
The class provides methods to query, add, remove, and get elements.Helper class for xml related operations.A xml reader that reads xml content from astring
orinput provider
.
The reader expects a xml declaration at the beginning of the content, which can be read withXmlReader.readDeclaration()
.
After reading the declaration, the xml root element can be read withXmlReader.readXmlElement()
.Represents a xml value element.A xml writer for writing xml elements to an output.
The writer expects only one xml element per output.