Uses of Class
org.simpleframework.xml.core.LabelMap

Packages that use LabelMap
Package
Description
 
  • Uses of LabelMap in org.simpleframework.xml.core

    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 final LabelMap
    CompositeListUnion.elements
    This contains the labels in the union group keyed by name.
    private final LabelMap
    CompositeMapUnion.elements
    This contains the labels in the union group keyed by name.
    private final LabelMap
    CompositeUnion.elements
    This contains the labels in the union group keyed by name.
    private final 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
    This is used to build a map from a Context object.
    ModelSection.getAttributes()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    PrimitiveScanner.EmptySection.getAttributes()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    Section.getAttributes()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    TreeModel.getAttributes()
    This is used to build a map from a Context object.
    Group.getElements()
    This is used to acquire a LabelMap containing the labels available to the group.
    GroupExtractor.getElements()
    This is used to acquire a LabelMap containing the labels available to the group.
    Model.getElements()
    This is used to build a map from a Context object.
    ModelSection.getElements()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    PrimitiveScanner.EmptySection.getElements()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    Section.getElements()
    Returns a LabelMap that contains the details for all fields and methods marked with XML annotations.
    TreeModel.getElements()
    This is used to build a map from a Context object.
    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, Annotation type, LabelMap map)
    This is used when all details from a field have been gathered and a Label 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 a Label implementation needs to be created.
    private void
    Composite.readAttribute(InputNode node, Object source, Section section, LabelMap map)
    This readAttribute method is used for deserialization of the provided node object using a delegate converter.
    private void
    Composite.readElement(InputNode node, Object source, Section section, LabelMap map)
    This readElement method is used for deserialization of the provided node object using a delegate converter.
    private void
    Composite.readUnion(InputNode node, Object source, LabelMap map, Label label)
    The readUnion 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)
    This register method is used to register a label based on its name and path.
    private Label
    InstantiatorBuilder.resolve(Parameter parameter, LabelMap map)
    This resolve method is used to find a label based on the name and path of the provided parameter.
    private void
    StructureBuilder.union(Contact field, Annotation type, LabelMap map)
    This is used when all details from a field have been gathered and a Label implementation needs to be created.
    private void
    Composite.validate(InputNode node, LabelMap map)
    This method checks to see if there are any Label objects remaining in the provided map that are required.
    private void
    Composite.validate(InputNode node, LabelMap map, Object source)
    This method checks to see if there are any Label objects remaining in the provided map that are required.
    private void
    Composite.validateAttribute(InputNode node, Section section, LabelMap map)
    This validateAttribute 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, 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)
    This validateElement method performs a validation of the provided node object using a delegate converter.
    private void
    Composite.validateUnion(InputNode node, LabelMap map, Label label)
    The validateUnion 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
    Modifier
    Constructor
    Description
     
    Registry(LabelMap elements)
    Constructor for the Registry object.