TypeCodec.AbstractCollectionCodec<E,C extends Collection<E>>, TypeCodec.AbstractMapCodec<K,V>, TypeCodec.AbstractTupleCodec<T>, TypeCodec.AbstractUDTCodec<T>, TypeCodec.PrimitiveBooleanCodec, TypeCodec.PrimitiveByteCodec, TypeCodec.PrimitiveDoubleCodec, TypeCodec.PrimitiveFloatCodec, TypeCodec.PrimitiveIntCodec, TypeCodec.PrimitiveLongCodec, TypeCodec.PrimitiveShortCodec| Modifier and Type | Field and Description |
|---|---|
protected TypeCodec<K> |
keyCodec |
protected TypeCodec<V> |
valueCodec |
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractMapCodec(TypeCodec<K> keyCodec,
TypeCodec<V> valueCodec) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
accepts(Object value)
Return
true if this codec is capable of serializing
the given object. |
Map<K,V> |
deserialize(ByteBuffer bytes,
ProtocolVersion protocolVersion)
Deserialize the given
ByteBuffer instance according to the CQL type
handled by this codec. |
String |
format(Map<K,V> value)
Format the given value as a valid CQL literal according
to the CQL type handled by this codec.
|
protected abstract Map<K,V> |
newInstance(int size)
Return a new
Map instance with the given estimated size. |
Map<K,V> |
parse(String value)
Parse the given CQL literal into an instance of the Java type
handled by this codec.
|
ByteBuffer |
serialize(Map<K,V> value,
ProtocolVersion protocolVersion)
Serialize the given value according to the CQL type
handled by this codec.
|
accepts, accepts, accepts, ascii, bigint, blob, cboolean, cdouble, cfloat, cint, counter, custom, date, decimal, getCqlType, getJavaType, inet, list, map, set, smallInt, time, timestamp, timeUUID, tinyInt, toString, tuple, userType, uuid, varchar, varintpublic boolean accepts(Object value)
TypeCodectrue if this codec is capable of serializing
the given object. Note that the object's Java type is inferred
from the object' runtime (raw) type, contrary
to TypeCodec.accepts(TypeToken) which is capable of
handling generic types.
This method is intended mostly to be used by the QueryBuilder
when no type information is available when the codec is used.
Implementation notes:
TypeToken.isAssignableFrom(TypeToken)
and it's strongly recommended not to modify this behavior.
This means that, by default, a codec will accept
any subtype of the Java type that it has been created for.public Map<K,V> parse(String value)
TypeCodec"NULL";
in most cases, implementations should interpret these inputs has equivalent to a null
reference.public String format(Map<K,V> value)
TypeCodec"NULL" for null inputs.public ByteBuffer serialize(Map<K,V> value, ProtocolVersion protocolVersion)
TypeCodecnull input as
the equivalent of an empty collection.serialize in class TypeCodec<Map<K,V>>value - An instance of T; may be null.protocolVersion - the protocol version to use when serializing
bytes. In most cases, the proper value to provide for this argument
is the value returned by ProtocolOptions.getProtocolVersion() (which
is the protocol version in use by the driver).ByteBuffer instance containing the serialized form of Tpublic Map<K,V> deserialize(ByteBuffer bytes, ProtocolVersion protocolVersion)
TypeCodecByteBuffer instance according to the CQL type
handled by this codec.
Implementation notes:
null or a default value for the corresponding Java type, if applicable;null;
they should return empty collections instead (the driver's default collection codecs all comply with this rule).ByteBuffer should never be consumed by read operations that
modify its current position; if necessary,
ByteBuffer.duplicate() duplicate} it before consuming.deserialize in class TypeCodec<Map<K,V>>bytes - A ByteBuffer instance containing the serialized form of T;
may be null or empty.protocolVersion - the protocol version to use when serializing
bytes. In most cases, the proper value to provide for this argument
is the value returned by ProtocolOptions.getProtocolVersion() (which
is the protocol version in use by the driver).