Package com.skaringa.javaxml.serializers

Registry, Serializers and deserializers for various data types.

See:
          Description

Interface Summary
ComponentSerializer Interface that describes the (de)serializer of a component.
 

Class Summary
AbstractSerializer Abstract class that provides methods common for all serializers.
ArrayHelper Class that helps with deserialization of arrays.
ArraySerializer Implementation of ComponentSerializer for arrays.
CollectionSerializer Implementation of ComponentSerializer for collections.
DateSerializer Implementation of ComponentSerializer for java.util.Date
LexicographicalFieldOrderComparator Comparator to order member fields according to the lexicographical order of their names.
LocaleSerializer Implementation of ComponentSerializer for java.util.Locale (which doesn't have a no-arg constructor).
MapEntryHelper Class that helps with deserialization of Maps.
MapEntrySerializer Implementation of ComponentSerializer for Map.Entry
MapSerializer Implementation of ComponentSerializer for maps
ObjectSerializer Implementation of ComponentSerializer for complex objects.
PrimitiveTypeSerializer Implementation of ComponentSerializer for the primitive java types plus their wrappers and java.lang.String.
SerializerRegistry Registry that holds the serializers.
SetSerializer Implementation of ComponentSerializer for java.util.Set implementing classes.
SkaFieldOrderComparator Comparator to order fields according to a specific order of their names.
 

Package com.skaringa.javaxml.serializers Description

Registry, Serializers and deserializers for various data types. All (de)serializers must implement the interface ComponentSerializer. The SerializerRegistry handles the mapping from Java- and XML-types to the concrete implementation of ComponentSerializer.