TypeCodec
instances useful for
serializing between CQL lists and Java arrays.See: Description
Class | Description |
---|---|
AbstractArrayCodec<T> |
Base class for all codecs dealing with Java arrays.
|
AbstractPrimitiveArrayCodec<T> |
Base class for all codecs dealing with Java primitive arrays.
|
DoubleArrayCodec |
A codec that maps the CQL type
list<double> to the Java type double[] . |
FloatArrayCodec |
A codec that maps the CQL type
list<float> to the Java type float[] . |
IntArrayCodec |
A codec that maps the CQL type
list<int> to the Java type int[] . |
LongArrayCodec |
A codec that maps the CQL type
list<long> to the Java type long[] . |
ObjectArrayCodec<E> |
Codec dealing with Java object arrays.
|
TypeCodec
instances useful for
serializing between CQL lists and Java arrays.
The codecs in this package provide the following mappings:
Codec | CQL type | Java type |
---|---|---|
ObjectArrayCodec |
list<?> |
T[] |
IntArrayCodec |
list<int> |
int[] |
LongArrayCodec |
list<long> |
long[] |
FloatArrayCodec |
list<float> |
float[] |
DoubleArrayCodec |
list<double> |
double[] |
Copyright © 2012–2015. All rights reserved.