Uses of Interface
com.tangosol.io.pof.reflect.Codec
-
Packages that use Codec Package Description com.tangosol.io.pof.reflect Contains classes related to POF stream navigation and manipulation. -
-
Uses of Codec in com.tangosol.io.pof.reflect
Classes in com.tangosol.io.pof.reflect that implement Codec Modifier and Type Class Description static class
Codecs.AbstractCodec
AbstractCodec
implementations that encodes objects by simply delegating toPofWriter.writeObject(int, Object)
.static class
Codecs.ArrayCodec
Implementation ofCodec
that delegates toPofReader.readObjectArray(int, Object[])
andPofWriter.writeObjectArray(int, Object[])
to deserialize and serialize an object.static class
Codecs.CollectionCodec
Implementation ofCodec
that delegates toPofReader.readCollection(int, Collection)
andPofWriter.writeCollection(int, Collection)
to deserialize and serialize an object.static class
Codecs.DefaultCodec
Implementation ofCodec
that simply delegates toPofReader.readObject(int)
andPofWriter.writeObject(int, Object)
to deserialize and serialize an object.static class
Codecs.LongArrayCodec
Implementation ofCodec
that delegates toPofReader.readLongArray(int, LongArray)
andPofWriter.writeLongArray(int, LongArray)
to deserialize and serialize an object.static class
Codecs.MapCodec
Implementation ofCodec
that delegates toPofReader.readMap(int, Map)
andPofWriter.writeMap(int, Map)
to deserialize and serialize an object.Fields in com.tangosol.io.pof.reflect declared as Codec Modifier and Type Field Description static Codec
Codecs. DEFAULT_CODEC
A singleton instance of aCodecs.DefaultCodec
Methods in com.tangosol.io.pof.reflect that return Codec Modifier and Type Method Description static Codec
Codecs. getCodec(Class<?> clz)
Return aCodec
based on the provided Class.
-