Uses of Interface
org.simpleframework.xml.core.Schema
-
Packages that use Schema Package Description org.simpleframework.xml.core -
-
Uses of Schema in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement Schema Modifier and Type Class Description (package private) class
ClassSchema
TheSchema
object is used to track which fields within an object have been visited by a converter.Fields in org.simpleframework.xml.core declared as Schema Modifier and Type Field Description protected Schema
Composite.Builder. schema
This is the schema object that contains the XML definition.Methods in org.simpleframework.xml.core that return Schema Modifier and Type Method Description Schema
Context. getSchema(java.lang.Class type)
This creates aSchema
object that can be used to examine the fields within the XML class schema.Schema
Source. getSchema(java.lang.Class type)
This creates aSchema
object that can be used to examine the fields within the XML class schema.Methods in org.simpleframework.xml.core with parameters of type Schema Modifier and Type Method Description private Composite.Builder
Composite. read(Schema schema, Instance value)
Thisread
method performs deserialization of the XML schema class type by traversing the contacts and instantiating them using details from the provided XML element.private void
Composite. read(InputNode node, java.lang.Object source, Schema schema)
Thisread
method performs deserialization of the XML schema class type by traversing the contacts and instantiating them using details from the provided XML element.private void
Composite. readVersion(InputNode node, java.lang.Object source, Schema schema)
This method is used to read the version from the provided input node.private void
Composite. validateText(InputNode node, Schema schema)
ThisvalidateText
method validates the text value from the XML element node specified.private void
Composite. write(OutputNode node, java.lang.Object source, Schema schema)
Thiswrite
method is used to perform serialization of the given source object.private void
Composite. writeVersion(OutputNode node, java.lang.Object source, Schema schema)
This method is used to write the version attribute.Constructors in org.simpleframework.xml.core with parameters of type Schema Constructor Description Builder(Composite composite, Criteria criteria, Schema schema, Instance value)
Constructor for theBuilder
object.Injector(Composite composite, Criteria criteria, Schema schema, Instance value)
Constructor for theInjector
object.
-