E - The Enum class this codec serializes from and deserializes to.public static class TypeCodec.EnumIntCodec<E extends Enum<E>> extends TypeCodec<E>
Enum instances as CQL ints
representing their ordinal values as returned by Enum.ordinal().
Note that, by default, the driver uses TypeCodec.EnumStringCodec to serialize Enum instances;
to force the use of this codec instead for a specific Enum instance,
the appropriate TypeCodec.EnumIntCodec instance must be explicitly
registered.
Note that this codec relies on the enum constants declaration order; it is therefore vital that this order remains immutable.
TypeCodec.AbstractUUIDCodec, TypeCodec.AsciiCodec, TypeCodec.BigintCodec, TypeCodec.BlobCodec, TypeCodec.BooleanCodec, TypeCodec.CollectionCodec<E,C extends Collection<E>>, TypeCodec.CounterCodec, TypeCodec.CustomCodec, TypeCodec.DateCodec, TypeCodec.DecimalCodec, TypeCodec.DoubleCodec, TypeCodec.EnumIntCodec<E extends Enum<E>>, TypeCodec.EnumStringCodec<E extends Enum<E>>, TypeCodec.FloatCodec, TypeCodec.InetCodec, TypeCodec.IntCodec, TypeCodec.ListCodec<T>, TypeCodec.LongCodec, TypeCodec.MapCodec<K,V>, TypeCodec.MappingCodec<T,U>, TypeCodec.PrimitiveBooleanCodec, TypeCodec.PrimitiveByteCodec, TypeCodec.PrimitiveDoubleCodec, TypeCodec.PrimitiveFloatCodec, TypeCodec.PrimitiveIntCodec, TypeCodec.PrimitiveLongCodec, TypeCodec.PrimitiveShortCodec, TypeCodec.SetCodec<T>, TypeCodec.SmallIntCodec, TypeCodec.StringCodec, TypeCodec.StringParsingCodec<T>, TypeCodec.TimeCodec, TypeCodec.TimestampCodec, TypeCodec.TimeUUIDCodec, TypeCodec.TinyIntCodec, TypeCodec.TupleCodec, TypeCodec.UDTCodec, TypeCodec.UUIDCodec, TypeCodec.VarcharCodec, TypeCodec.VarintCodec| Constructor and Description |
|---|
EnumIntCodec(Class<E> enumClass) |
EnumIntCodec(TypeCodec<Integer> innerCodec,
Class<E> enumClass) |
| Modifier and Type | Method and Description |
|---|---|
E |
deserialize(ByteBuffer bytes,
ProtocolVersion protocolVersion)
Deserialize the given
ByteBuffer instance according to the CQL type
handled by this codec. |
String |
format(E value)
Format the given value as a valid CQL literal according
to the CQL type handled by this codec.
|
E |
parse(String value)
Parse the given CQL literal into an instance of the Java type
handled by this codec.
|
ByteBuffer |
serialize(E value,
ProtocolVersion protocolVersion)
Serialize the given value according to the CQL type
handled by this codec.
|
accepts, accepts, accepts, equals, getCqlType, getJavaType, hashCode, toStringpublic ByteBuffer serialize(E value, ProtocolVersion protocolVersion) throws InvalidTypeException
TypeCodecImplementation notes:
null input as
the equivalent of an empty collection.serialize in class TypeCodec<E extends Enum<E>>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 TInvalidTypeException - if the given value does not have the expected typepublic E deserialize(ByteBuffer bytes, ProtocolVersion protocolVersion) throws InvalidTypeException
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.deserialize in class TypeCodec<E extends Enum<E>>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).InvalidTypeException - if the given ByteBuffer instance cannot be deserializedpublic E parse(String value) throws InvalidTypeException
TypeCodec"NULL";
in most cases, implementations should interpret these inputs has equivalent to a null
reference.public String format(E value) throws InvalidTypeException
TypeCodec"NULL" for null inputs.Copyright © 2012–2015. All rights reserved.