Package com.tangosol.io.pof.reflect
Class Codecs.CollectionCodec
- java.lang.Object
-
- com.tangosol.io.pof.reflect.Codecs.AbstractCodec
-
- com.tangosol.io.pof.reflect.Codecs.CollectionCodec
-
- All Implemented Interfaces:
Codec
- Enclosing class:
- Codecs
public static class Codecs.CollectionCodec extends Codecs.AbstractCodec
Implementation ofCodec
that delegates toPofReader.readCollection(int, Collection)
andPofWriter.writeCollection(int, Collection)
to deserialize and serialize an object.- Since:
- 3.7.1
-
-
Field Summary
Fields Modifier and Type Field Description protected Class<? extends Collection<Object>>
f_clzCol
Class that represents the Collection implementation that will be serialized and deserialized into.
-
Constructor Summary
Constructors Constructor Description CollectionCodec(Class<? extends Collection<Object>> clzCol)
Construct a CollectionCodec.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
decode(PofReader in, int index)
Deserialize an object from the providedPofReader
.-
Methods inherited from class com.tangosol.io.pof.reflect.Codecs.AbstractCodec
encode, newInstance
-
-
-
-
Field Detail
-
f_clzCol
protected Class<? extends Collection<Object>> f_clzCol
Class that represents the Collection implementation that will be serialized and deserialized into.
-
-
Constructor Detail
-
CollectionCodec
public CollectionCodec(Class<? extends Collection<Object>> clzCol)
Construct a CollectionCodec.- Parameters:
clzCol
- the Class that represents the Collection implementation that will be serialized and deserialized into
-
-
Method Detail
-
decode
public Object decode(PofReader in, int index) throws IOException
Deserialize an object from the providedPofReader
. Implementing this interface allows introducing specific return implementations.- Parameters:
in
- the PofReader to read fromindex
- the index of the POF property to deserialize- Returns:
- a specific implementation of the POF property
- Throws:
IOException
- if an I/O error occurs
-
-