Package at.spardat.xma.serializer

Interface Summary
Deserializer Used to extract primitive values from serialized byte arrays.
Serializer Used to map a sequence of primitive types to a byte array.
XmaInput Provides for extracting primitive Java types from a destination media that has been written before using the XmaOutput interface.
XmaOutput This interface provides for transforming various java primitive types to a destination format that is dependent on the class implementing this interface.
XmaSerializable Objects implementing this interface may be directy read and written from and to XmaOutput/XmaInput without relying on the standard java serialization mechanism.
 

Class Summary
AsciiDeserializer Reads byte sequences produced by class AsciiSerializer.
AsciiSerializer Serializer that produces only ascii characters.
BinaryDeserializer Deserializer implementation that uses the Java Serialization Mechanism
BinarySerializer Serializer implementation that uses the Java-Serialization mechanism
SerializerFactory Factory to create Serializers and Deserializers.
SerializerFactoryClient Client side SerializerFactory
SerializerFactoryServer Server side SerializerFactory.
TaggedAsciiDeserializer Is able to read the byte stream written by TaggedAsciiSerializer.
TaggedAsciiSerializer Ascii Serializer where primitive values are written in format tag=value,
Util Some serialization util methods