Uses of Class
org.apache.cassandra.cql3.functions.types.CodecRegistry
-
Packages that use CodecRegistry Package Description org.apache.cassandra.cql3.functions.types Contains pieces of the Java Driver that are needed to handle data types in C* User-Defined-Functions/Aggregates. -
-
Uses of CodecRegistry in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return CodecRegistry Modifier and Type Method Description protected CodecRegistry
TupleValue. getCodecRegistry()
protected CodecRegistry
UDTValue. getCodecRegistry()
CodecRegistry
CodecRegistry. register(java.lang.Iterable<? extends TypeCodec<?>> codecs)
Register the given codecs with this registry.CodecRegistry
CodecRegistry. register(TypeCodec<?> newCodec)
Register the given codec with this registry.CodecRegistry
CodecRegistry. register(TypeCodec<?>... codecs)
Register the given codecs with this registry.Methods in org.apache.cassandra.cql3.functions.types with parameters of type CodecRegistry Modifier and Type Method Description static TupleType
TupleType. of(ProtocolVersion protocolVersion, CodecRegistry codecRegistry, DataType... types)
Creates a "disconnected" tuple type (you should preferMetadata#newTupleType(DataType...) cluster.getMetadata().newTupleType(...)
whenever possible).static DataType
DataTypeClassNameParser. parseOne(java.lang.String className, ProtocolVersion protocolVersion, CodecRegistry codecRegistry)
-