Uses of Interface
org.simpleframework.xml.core.Converter

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

    Modifier and Type
    Interface
    Description
    (package private) interface 
    The Repeater interface is used to for converters that can repeat a read on a given element.
    Classes in org.simpleframework.xml.core that implement Converter
    Modifier and Type
    Class
    Description
    (package private) class 
    The Composite object is used to perform serialization of objects that contain XML annotations.
    (package private) class 
    The CompositeArray object is used to convert a list of elements to an array of object entries.
    (package private) class 
    The CompositeInlineList object is used to convert an group of elements in to a collection of element entries.
    (package private) class 
    The CompositeMap is used to serialize and deserialize maps to and from a source XML document.
    (package private) class 
    The CompositeKey object is used to convert an object to an from an XML element.
    (package private) class 
    The CompositeList object is used to convert an element list to a collection of element entries.
    (package private) class 
    The CompositeListUnion object is used to act as a mediator for multiple converters associated with a particular union group.
    (package private) class 
    The CompositeMap is used to serialize and deserialize maps to and from a source XML document.
    (package private) class 
    The CompositeMapUnion object is used to act as a mediator for multiple converters associated with a particular union group.
    (package private) class 
    The CompositeUnion object is used to act as a mediator for multiple converters associated with a particular union group.
    (package private) class 
    The CompositeValue object is used to convert an object to an from an XML element.
    (package private) class 
    The Primitive object is used to provide serialization for primitive objects.
    (package private) class 
    The PrimitiveArray object is used to convert a list of elements to an array of object entries.
    (package private) class 
    The PrimitiveInlineList object is used to convert a group of elements in to a collection of element entries.
    (package private) class 
    The PrimitiveKey is used to serialize a primitive key to and from a node.
    (package private) class 
    The PrimitiveList object is used to convert an element list to a collection of element entries.
    (package private) class 
    The PrimitiveValue is used to serialize a primitive value to and from a node.
    (package private) class 
    This TextList object is a converter that is used to read free text and insert that text in to a list.
    private static class 
    The Adapter object is used to call the repeater with the original deserialized object.
    Modifier and Type
    Field
    Description
    private final Converter
    CompositeInlineMap.key
    This is the name of the entry wrapping the key and value.
    private final Converter
    CompositeMap.key
    This is the name of the entry wrapping the key and value.
    private final Converter
    Variable.Adapter.reader
    This is the converter object used to perform a repeat read.
    private final Converter
    CompositeInlineMap.value
    This is the type that the value objects are instances of.
    private final Converter
    CompositeMap.value
    This is the type that the value objects are instances of.
    Modifier and Type
    Method
    Description
    AttributeLabel.getConverter(Context context)
    Creates a Converter that can convert an attribute to a primitive object.
    CacheLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    ElementArrayLabel.getConverter(Context context)
    This will create a Converter for transforming an XML element into an array of XML serializable objects.
    private Converter
    ElementArrayLabel.getConverter(Context context, String name)
    This will create a Converter for transforming an XML element into an array of XML serializable objects.
    ElementLabel.getConverter(Context context)
    Creates a converter that can be used to transform an XML node to an object and vice versa.
    ElementListLabel.getConverter(Context context)
    This will create a Converter for transforming an XML element into a collection of XML serializable objects.
    private Converter
    ElementListLabel.getConverter(Context context, String name)
    This will create a Converter for transforming an XML element into a collection of XML serializable objects.
    ElementListUnionLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    ElementMapLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    ElementMapUnionLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    ElementUnionLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    Label.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    TextLabel.getConverter(Context context)
    Creates a converter that can be used to transform an XML node to an object and vice versa.
    TextListLabel.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    Variable.getConverter(Context context)
    This method returns a Converter which can be used to convert an XML node into an object value and vice versa.
    VersionLabel.getConverter(Context context)
    Creates a Converter that can convert an attribute to a double value.
    private Converter
    ElementListLabel.getInlineConverter(Context context, String name)
    This will create a Converter for transforming an XML element into a collection of XML serializable objects.
    Entry.getKey(Context context)
    This is used to get the key converter for the entry.
    Entry.getValue(Context context)
    This is used to get the value converter for the entry.
    Methods in org.simpleframework.xml.core with parameters of type Converter
    Modifier and Type
    Method
    Description
    private void
    Composite.writeElement(OutputNode node, Object value, Converter convert)
    This is used write the element specified using the specified converter.
    Constructors in org.simpleframework.xml.core with parameters of type Converter
    Modifier
    Constructor
    Description
     
    Adapter(Converter reader, Label label, Object value)
    Constructor for the Adapter object.