Uses of Class
org.apache.cassandra.cql3.functions.types.TupleType
-
Packages that use TupleType 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 TupleType in org.apache.cassandra.cql3.functions.types
Fields in org.apache.cassandra.cql3.functions.types declared as TupleType Modifier and Type Field Description protected TupleType
TypeCodec.AbstractTupleCodec. definition
Methods in org.apache.cassandra.cql3.functions.types that return TupleType Modifier and Type Method Description TupleType
TupleValue. getType()
The tuple type this is a value of.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).Methods in org.apache.cassandra.cql3.functions.types with parameters of type TupleType Modifier and Type Method Description boolean
TupleType. contains(TupleType other)
Returntrue
if this tuple type contains the given tuple type, andfalse
otherwise.static TypeCodec<TupleValue>
TypeCodec. tuple(TupleType type)
Return a newly-created codec for the given CQL tuple type.
-