Uses of Class
org.simpleframework.xml.core.LabelMap
-
Packages that use LabelMap Package Description org.simpleframework.xml.core -
-
Uses of LabelMap in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as LabelMap Modifier and Type Field Description private LabelMap
InstantiatorBuilder. attributes
This is used to maintain the mappings for the attribute labels.private LabelMap
ModelSection. attributes
Represents a mapping between styled names and attributes.private LabelMap
StructureBuilder. attributes
For validation all attributes must be stored in the builder.private LabelMap
TreeModel. attributes
This holds the mappings for elements within the model.private LabelMap
CompositeListUnion. elements
This contains the labels in the union group keyed by name.private LabelMap
CompositeMapUnion. elements
This contains the labels in the union group keyed by name.private LabelMap
CompositeUnion. elements
This contains the labels in the union group keyed by name.private LabelMap
GroupExtractor. elements
This contains each label registered by label name.private LabelMap
GroupExtractor.Registry. elements
This maintains a mapping between label names and labels.private LabelMap
InstantiatorBuilder. elements
This is used to maintain the mappings for the element labels.private LabelMap
ModelSection. elements
Represents a mapping between styled names and elements.private LabelMap
StructureBuilder. elements
For validation all elements must be stored in the builder.private LabelMap
TreeModel. elements
This holds the mappings for elements within the model.private LabelMap
InstantiatorBuilder. texts
This is used to maintain the mappings for the text labels.private LabelMap
StructureBuilder. texts
This is used to maintain the text labels for the class.Methods in org.simpleframework.xml.core that return LabelMap Modifier and Type Method Description LabelMap
Model. getAttributes()
This is used to build a map from aContext
object.LabelMap
ModelSection. getAttributes()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
PrimitiveScanner.EmptySection. getAttributes()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
Section. getAttributes()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
TreeModel. getAttributes()
This is used to build a map from aContext
object.LabelMap
Group. getElements()
This is used to acquire aLabelMap
containing the labels available to the group.LabelMap
GroupExtractor. getElements()
This is used to acquire aLabelMap
containing the labels available to the group.LabelMap
Model. getElements()
This is used to build a map from aContext
object.LabelMap
ModelSection. getElements()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
PrimitiveScanner.EmptySection. getElements()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
Section. getElements()
Returns aLabelMap
that contains the details for all fields and methods marked with XML annotations.LabelMap
TreeModel. getElements()
This is used to build a map from aContext
object.LabelMap
LabelMap. getLabels()
This method is used to clone the label map such that mappings can be maintained in the original even if they are modified in the clone.Methods in org.simpleframework.xml.core with parameters of type LabelMap Modifier and Type Method Description private void
StructureBuilder. process(Contact field, java.lang.annotation.Annotation type, LabelMap map)
This is used when all details from a field have been gathered and aLabel
implementation needs to be created.private void
StructureBuilder. process(Contact field, Label label, LabelMap map)
This is used when all details from a field have been gathered and aLabel
implementation needs to be created.private void
Composite. readAttribute(InputNode node, java.lang.Object source, Section section, LabelMap map)
ThisreadAttribute
method is used for deserialization of the provided node object using a delegate converter.private void
Composite. readElement(InputNode node, java.lang.Object source, Section section, LabelMap map)
ThisreadElement
method is used for deserialization of the provided node object using a delegate converter.private void
Composite. readUnion(InputNode node, java.lang.Object source, LabelMap map, Label label)
ThereadUnion
method is determine the unions for a particular label and set the value of that union to the same value as the label.private void
InstantiatorBuilder. register(Label label, LabelMap map)
Thisregister
method is used to register a label based on its name and path.private Label
InstantiatorBuilder. resolve(Parameter parameter, LabelMap map)
Thisresolve
method is used to find a label based on the name and path of the provided parameter.private void
StructureBuilder. union(Contact field, java.lang.annotation.Annotation type, LabelMap map)
This is used when all details from a field have been gathered and aLabel
implementation needs to be created.private void
Composite. validate(InputNode node, LabelMap map)
This method checks to see if there are anyLabel
objects remaining in the provided map that are required.private void
Composite. validate(InputNode node, LabelMap map, java.lang.Object source)
This method checks to see if there are anyLabel
objects remaining in the provided map that are required.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
InstantiatorBuilder. validateConstructors(LabelMap map)
This is used when there are only default constructors.private void
InstantiatorBuilder. validateConstructors(LabelMap map, java.util.List<Creator> list)
This is used to ensure that final methods and fields have a constructor parameter that allows the value to be injected in to.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. validateUnion(InputNode node, LabelMap map, Label label)
ThevalidateUnion
method is determine the unions for a particular label and set the value of that union to the same value as the label.Constructors in org.simpleframework.xml.core with parameters of type LabelMap Constructor Description Registry(LabelMap elements)
Constructor for theRegistry
object.
-