Package pivot.serialization

Contains a set of classes for use in data serialization.

See:
          Description

Interface Summary
Serializer<T> Defines an interface for writing objects to and reading objects from a data stream.
 

Class Summary
BinarySerializer Implementation of the Serializer interface that uses Java's internal serialization mechanism to read and write values.
ByteArraySerializer Implementation of the Serializer interface that reads and writes a byte array.
CSVSerializer Implementation of the Serializer interface that reads data from and writes data to a comma-separated value (CSV) file.
JSONSerializer Implementation of the Serializer interface that reads data from and writes data to a JavaScript Object Notation (JSON) file.
PropertiesSerializer Implementation of the Serializer interface that reads data from and writes data to the Java properties file format.
 

Exception Summary
SerializationException Thrown when an error is encountered during serialization.
 

Package pivot.serialization Description

Contains a set of classes for use in data serialization.