Uses of Interface
org.simpleframework.xml.core.Converter
-
Packages that use Converter Package Description org.simpleframework.xml.core -
-
Uses of Converter in org.simpleframework.xml.core
Subinterfaces of Converter in org.simpleframework.xml.core Modifier and Type Interface Description (package private) interface
Repeater
TheRepeater
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
Composite
TheComposite
object is used to perform serialization of objects that contain XML annotations.(package private) class
CompositeArray
TheCompositeArray
object is used to convert a list of elements to an array of object entries.(package private) class
CompositeInlineList
TheCompositeInlineList
object is used to convert an group of elements in to a collection of element entries.(package private) class
CompositeInlineMap
TheCompositeMap
is used to serialize and deserialize maps to and from a source XML document.(package private) class
CompositeKey
TheCompositeKey
object is used to convert an object to an from an XML element.(package private) class
CompositeList
TheCompositeList
object is used to convert an element list to a collection of element entries.(package private) class
CompositeListUnion
TheCompositeListUnion
object is used to act as a mediator for multiple converters associated with a particular union group.(package private) class
CompositeMap
TheCompositeMap
is used to serialize and deserialize maps to and from a source XML document.(package private) class
CompositeMapUnion
TheCompositeMapUnion
object is used to act as a mediator for multiple converters associated with a particular union group.(package private) class
CompositeUnion
TheCompositeUnion
object is used to act as a mediator for multiple converters associated with a particular union group.(package private) class
CompositeValue
TheCompositeValue
object is used to convert an object to an from an XML element.(package private) class
Primitive
ThePrimitive
object is used to provide serialization for primitive objects.(package private) class
PrimitiveArray
ThePrimitiveArray
object is used to convert a list of elements to an array of object entries.(package private) class
PrimitiveInlineList
ThePrimitiveInlineList
object is used to convert a group of elements in to a collection of element entries.(package private) class
PrimitiveKey
ThePrimitiveKey
is used to serialize a primitive key to and from a node.(package private) class
PrimitiveList
ThePrimitiveList
object is used to convert an element list to a collection of element entries.(package private) class
PrimitiveValue
ThePrimitiveValue
is used to serialize a primitive value to and from a node.(package private) class
TextList
ThisTextList
object is a converter that is used to read free text and insert that text in to a list.private static class
Variable.Adapter
TheAdapter
object is used to call the repeater with the original deserialized object.Fields in org.simpleframework.xml.core declared as Converter Modifier and Type Field Description private Converter
CompositeInlineMap. key
This is the name of the entry wrapping the key and value.private Converter
CompositeMap. key
This is the name of the entry wrapping the key and value.private Converter
Variable.Adapter. reader
This is the converter object used to perform a repeat read.private Converter
CompositeInlineMap. value
This is the type that the value objects are instances of.private Converter
CompositeMap. value
This is the type that the value objects are instances of.Methods in org.simpleframework.xml.core that return Converter Modifier and Type Method Description Converter
AttributeLabel. getConverter(Context context)
Creates aConverter
that can convert an attribute to a primitive object.Converter
CacheLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
ElementArrayLabel. getConverter(Context context)
This will create aConverter
for transforming an XML element into an array of XML serializable objects.private Converter
ElementArrayLabel. getConverter(Context context, java.lang.String name)
This will create aConverter
for transforming an XML element into an array of XML serializable objects.Converter
ElementLabel. getConverter(Context context)
Creates a converter that can be used to transform an XML node to an object and vice versa.Converter
ElementListLabel. getConverter(Context context)
This will create aConverter
for transforming an XML element into a collection of XML serializable objects.private Converter
ElementListLabel. getConverter(Context context, java.lang.String name)
This will create aConverter
for transforming an XML element into a collection of XML serializable objects.Converter
ElementListUnionLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
ElementMapLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
ElementMapUnionLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
ElementUnionLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
Label. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
TextLabel. getConverter(Context context)
Creates a converter that can be used to transform an XML node to an object and vice versa.Converter
TextListLabel. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
Variable. getConverter(Context context)
This method returns aConverter
which can be used to convert an XML node into an object value and vice versa.Converter
VersionLabel. getConverter(Context context)
Creates aConverter
that can convert an attribute to a double value.private Converter
ElementListLabel. getInlineConverter(Context context, java.lang.String name)
This will create aConverter
for transforming an XML element into a collection of XML serializable objects.Converter
Entry. getKey(Context context)
This is used to get the key converter for the entry.Converter
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, java.lang.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 Constructor Description Adapter(Converter reader, Label label, java.lang.Object value)
Constructor for theAdapter
object.
-