Package | Description |
---|---|
com.tangosol.io.pof.reflect |
Contains classes related to POF stream navigation and manipulation.
|
Modifier and Type | Class | Description |
---|---|---|
static class |
Codecs.AbstractCodec
Abstract
Codec implementations that encodes objects by simply
delegating to PofWriter.writeObject(int, Object) . |
|
static class |
Codecs.ArrayCodec
Implementation of
Codec that delegates to
PofReader.readObjectArray(int, Object[]) and
PofWriter.writeObjectArray(int, Object[]) to deserialize and serialize
an object. |
|
static class |
Codecs.CollectionCodec
Implementation of
Codec that delegates to
PofReader.readCollection(int, Collection) and
PofWriter.writeCollection(int, Collection) to deserialize and
serialize an object. |
|
static class |
Codecs.DefaultCodec
Implementation of
Codec that simply delegates to
PofReader.readObject(int) and
PofWriter.writeObject(int, Object) to deserialize and serialize
an object. |
|
static class |
Codecs.LongArrayCodec
Implementation of
Codec that delegates to
PofReader.readLongArray(int, LongArray) and
PofWriter.writeLongArray(int, LongArray) to deserialize and serialize
an object. |
|
static class |
Codecs.MapCodec
Implementation of
Codec that delegates to
PofReader.readMap(int, Map) and
PofWriter.writeMap(int, Map) to deserialize and serialize
an object. |
Modifier and Type | Field | Description |
---|---|---|
static Codec |
Codecs.DEFAULT_CODEC
A singleton instance of a
Codecs.DefaultCodec |
Modifier and Type | Method | Description |
---|---|---|
static Codec |
Codecs.getCodec(Class<?> clz)
Return a
Codec based on the provided Class. |