Package | Description |
---|---|
gov.sandia.cognition.io.serialization |
Provides general classes for object serialization.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TextSerializationHandler<SerializedType>
Interface for a serialization handler that can serialize to text.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStreamSerializationHandler<SerializedType>
An abstract implementation of
StreamSerializationHandler . |
class |
AbstractTextSerializationHandler<SerializedType>
An abstract implementation of the
TextSerializationHandler interface. |
class |
GZIPSerializationHandler<SerializedType>
Implements a serialization handler that uses the GZip compression algorithm
on the output.
|
class |
JavaDefaultBinarySerializationHandler
A serialization handler based on basic Java binary serialization.
|
class |
XStreamSerializationHandler
A serialization
|
Modifier and Type | Field and Description |
---|---|
protected StreamSerializationHandler<SerializedType> |
GZIPSerializationHandler.baseHandler
The base handler that is being wrapped in a GZip.
|
Modifier and Type | Method and Description |
---|---|
StreamSerializationHandler<SerializedType> |
GZIPSerializationHandler.getBaseHandler()
Gets the base handler whose output is serialized.
|
Modifier and Type | Method and Description |
---|---|
void |
GZIPSerializationHandler.setBaseHandler(StreamSerializationHandler<SerializedType> baseHandler)
Sets the base handler whose output is serialized.
|
Constructor and Description |
---|
GZIPSerializationHandler(StreamSerializationHandler<SerializedType> baseHandler)
Creates a new
GZIPSerializationHandler that will use the given
base handler. |