protected void |
Attribute.dump(XMLDumper dumper,
AttributeType value) |
|
protected abstract void |
Property.dump(XMLDumper dumper,
NestedType value) |
Serializes the property into XML format, using given XMLDumper .
|
protected void |
Relationship.dump(XMLDumper dumper,
RelatedType value) |
|
void |
XMLDumper.dumpEndElement() |
Writes a sequence that ends previously started XML element.
|
<Type,Bean> void |
XMLDumper.dumpEntity(Entity<Type,Bean> entity,
Type value) |
Serializes given Entity into XML form.
|
void |
XMLDumper.dumpStartElement(java.lang.String tag) |
Writes a sequence that starts an XML element with given tag.
|
void |
XMLDumper.dumpText(java.lang.String text) |
Writes XML text content.
|
Type |
Entity.fromXML(java.lang.String xml) |
Deserializes entity from XML format.
|
boolean |
XMLParser.hasStartElement() |
Determines whether at the current parser position there is an XML element opening tag.
|
boolean |
XMLParser.hasStartElement(java.lang.String tag) |
Determines whether at the current parser position there is an XML element opening tag with
specified tag name.
|
protected AttributeType |
Attribute.parse(XMLParser parser) |
|
protected abstract NestedType |
Property.parse(XMLParser parser) |
Deserializes the property from XML format, using given XMLParser .
|
protected RelatedType |
Relationship.parse(XMLParser parser) |
|
void |
XMLParser.parseEndElement(java.lang.String tag) |
Reads XML element closing tag with specified tag name.
|
<Type,Bean> void |
XMLParser.parseEntity(Entity<Type,Bean> entity,
Bean bean) |
Deserializes given Entity from XML form.
|
java.lang.String |
XMLParser.parseStartElement() |
Reads XML element opening tag.
|
void |
XMLParser.parseStartElement(java.lang.String tag) |
Reads XML element opening tag with specified tag name.
|
java.lang.String |
XMLParser.parseText() |
Reads XML text content.
|
Type |
Entity.readFromXML(java.io.Reader reader) |
Deserializes entity from XML format, reading XML data from given Reader .
|
Type |
Entity.readFromXML(java.nio.file.Path path) |
Deserializes entity from XML format, reading XML data from file at given Path .
|
java.lang.String |
Entity.toXML(Type object) |
Serializes entity into XML format.
|
void |
Entity.writeToXML(java.io.Writer writer,
Type object) |
Serializes entity into XML format, writing XML data to given Writer .
|
void |
Entity.writeToXML(java.nio.file.Path path,
Type object) |
Serializes entity into XML format, writing XML data to file at given Path .
|