Package com.io7m.cedarbridge.runtime.api
Class CBListSerializer<T extends CBSerializableType>
java.lang.Object
com.io7m.cedarbridge.runtime.api.CBAbstractSerializer<CBList<T>>
com.io7m.cedarbridge.runtime.api.CBListSerializer<T>
- Type Parameters:
T- The type of elements
- All Implemented Interfaces:
CBSerializerType<CBList<T>>
public final class CBListSerializer<T extends CBSerializableType>
extends CBAbstractSerializer<CBList<T>>
A serializer of lists.
-
Constructor Summary
ConstructorsConstructorDescriptionCBListSerializer(CBSerializerType<T> inItemSerializer) A serializer of lists. -
Method Summary
Modifier and TypeMethodDescriptiondeserialize(CBSerializationContextType context) Deserialize a value of the given type.voidserialize(CBSerializationContextType context, CBList<T> value) Serialize a value of the given type.
-
Constructor Details
-
CBListSerializer
A serializer of lists.- Parameters:
inItemSerializer- The list element serializer
-
-
Method Details
-
serialize
Description copied from interface:CBSerializerTypeSerialize a value of the given type.- Parameters:
context- The serialization contextvalue- The value to be serialized- Throws:
IOException- On I/O errors
-
deserialize
Description copied from interface:CBSerializerTypeDeserialize a value of the given type.- Parameters:
context- The serialization context- Returns:
- A deserialized value
- Throws:
IOException- On I/O errors
-