Uses of Interface
org.simpleframework.xml.core.Section
Packages that use Section
-
Uses of Section in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement SectionModifier and TypeClassDescription(package private) class
TheModelSection
represents a section that is backed by aModel
instance.private static class
TheEmptySection
object creates a section for used with primitives that has no values.Fields in org.simpleframework.xml.core declared as SectionModifier and TypeFieldDescriptionprivate final Section
ClassSchema.section
This represents the XML section defined for the class schema.private final Section
PrimitiveScanner.section
This is an empty section that is used by every scanner object.Methods in org.simpleframework.xml.core that return SectionModifier and TypeMethodDescriptionClassSchema.getSection()
This is used to acquire theSection
that defines the XML structure for this class schema.DefaultScanner.getSection()
This is used to create aSection
given the context used for serialization.ModelSection.getSection
(String name) Returns the named section as aSection
object.ObjectScanner.getSection()
This is used to create aSection
given the context used for serialization.PrimitiveScanner.EmptySection.getSection
(String name) Returns the named section as aSection
object.PrimitiveScanner.getSection()
This is used to create aSection
given the context used for serialization.Scanner.getSection()
This is used to create aSection
given the context used for serialization.Schema.getSection()
This is used to acquire theSection
that defines the XML structure for this class schema.Section.getSection
(String name) Returns the named section as aSection
object.Structure.getSection()
This is used to acquire theSection
representing the class schema.Methods in org.simpleframework.xml.core with parameters of type SectionModifier and TypeMethodDescriptionprivate void
Composite.readAttribute
(InputNode node, Object source, Section section, LabelMap map) ThisreadAttribute
method is used for deserialization of the provided node object using a delegate converter.private void
Composite.readAttributes
(InputNode node, Object source, Section section) ThisreadAttributes
method reads the attributes from the provided XML element.private void
Composite.readElement
(InputNode node, Object source, Section section, LabelMap map) ThisreadElement
method is used for deserialization of the provided node object using a delegate converter.private void
Composite.readElements
(InputNode node, Object source, Section section) ThisreadElements
method reads the elements from the provided XML element.private void
Composite.readSection
(InputNode node, Object source, Section section) ThisreadSection
method performs deserialization of a schema class type by traversing the contacts and instantiating them using details from the provided XML element.private void
ThisreadText
method is used to read the text value from the XML element node specified.private void
Composite.validateAttribute
(InputNode node, Section section, LabelMap map) ThisvalidateAttribute
method performs a validation of the provided node object using a delegate converter.private void
Composite.validateAttributes
(InputNode node, Section section) ThisvalidateAttributes
method validates the attributes from the provided XML element.private void
Composite.validateElement
(InputNode node, Section section, LabelMap map) ThisvalidateElement
method performs a validation of the provided node object using a delegate converter.private void
Composite.validateElements
(InputNode node, Section section) ThisvalidateElements
method validates the elements from the provided XML element.private void
Composite.validateSection
(InputNode node, Section section) ThisvalidateSection
method performs validation of a schema class type by traversing the contacts and validating them using details from the provided XML element.private void
Composite.writeAttributes
(OutputNode node, Object source, Section section) This write method is used to write all the attribute contacts from the provided source object to the XML element.private void
Composite.writeElements
(OutputNode node, Object source, Section section) This write method is used to write all the element contacts from the provided source object to the XML element.private void
Composite.writeSection
(OutputNode node, Object source, Section section) ThiswriteSection
method is used to perform serialization of the given source object.private void
Composite.writeText
(OutputNode node, Object source, Section section) This write method is used to write the text contact from the provided source object to the XML element.private void
Composite.writeUnion
(OutputNode node, Object source, Section section, Label label) ThewriteUnion
method is determine the unions for a particular label and set the value of that union to the same value as the label.