Uses of Class
org.apache.cassandra.cql3.functions.types.TupleValue
Packages that use TupleValue
Package
Description
Contains pieces of the Java Driver that are needed to handle data types
in C* User-Defined-Functions/Aggregates.
-
Uses of TupleValue in org.apache.cassandra.cql3.functions
Methods in org.apache.cassandra.cql3.functions that return TupleValueModifier and TypeMethodDescriptionUDFContext.newArgTupleValue(int argNum) Creates a newTupleValueinstance for an argument.UDFContext.newArgTupleValue(String argName) Creates a newTupleValueinstance for an argument.UDFContextImpl.newArgTupleValue(int argNum) UDFContextImpl.newArgTupleValue(String argName) UDFContext.newReturnTupleValue()Creates a newTupleValueinstance for the return value.UDFContextImpl.newReturnTupleValue()UDFContext.newTupleValue(String cqlDefinition) Creates a newTupleValueinstance for the CQL type definition.UDFContextImpl.newTupleValue(String cqlDefinition) -
Uses of TupleValue in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return TupleValueModifier and TypeMethodDescriptionAbstractGettableData.getTupleValue(String name) Return the value fornameas a tuple value.GettableByIndexData.getTupleValue(int i) Return theith value as a tuple value.GettableByNameData.getTupleValue(String name) Return the value fornameas a tuple value.TupleType.newValue()Returns a new empty value for this tuple type.Returns a new value for this tuple type that uses the provided values for the components.Methods in org.apache.cassandra.cql3.functions.types that return types with arguments of type TupleValueModifier and TypeMethodDescriptionstatic TypeCodec<TupleValue>Return a newly-created codec for the given CQL tuple type.Methods in org.apache.cassandra.cql3.functions.types with parameters of type TupleValueModifier and TypeMethodDescriptionSettableByIndexData.setTupleValue(int i, TupleValue v) Sets theith value to the provided tuple value.SettableByNameData.setTupleValue(String name, TupleValue v) Sets the value for (all occurrences of) variablenameto the provided tuple value.