Uses of Class
org.apache.cassandra.cql3.functions.types.TupleValue
-
Packages that use TupleValue Package Description org.apache.cassandra.cql3.functions 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 TupleValue in org.apache.cassandra.cql3.functions
Methods in org.apache.cassandra.cql3.functions that return TupleValue Modifier and Type Method Description TupleValue
UDFContext. newArgTupleValue(int argNum)
Creates a newTupleValue
instance for an argument.TupleValue
UDFContext. newArgTupleValue(java.lang.String argName)
Creates a newTupleValue
instance for an argument.TupleValue
UDFContextImpl. newArgTupleValue(int argNum)
TupleValue
UDFContextImpl. newArgTupleValue(java.lang.String argName)
TupleValue
UDFContext. newReturnTupleValue()
Creates a newTupleValue
instance for the return value.TupleValue
UDFContextImpl. newReturnTupleValue()
TupleValue
UDFContext. newTupleValue(java.lang.String cqlDefinition)
Creates a newTupleValue
instance for the CQL type definition.TupleValue
UDFContextImpl. newTupleValue(java.lang.String cqlDefinition)
-
Uses of TupleValue in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return TupleValue Modifier and Type Method Description TupleValue
AbstractGettableData. getTupleValue(java.lang.String name)
Return the value forname
as a tuple value.TupleValue
GettableByIndexData. getTupleValue(int i)
Return thei
th value as a tuple value.TupleValue
GettableByNameData. getTupleValue(java.lang.String name)
Return the value forname
as a tuple value.TupleValue
TupleType. newValue()
Returns a new empty value for this tuple type.TupleValue
TupleType. newValue(java.lang.Object... values)
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 TupleValue Modifier and Type Method Description static TypeCodec<TupleValue>
TypeCodec. tuple(TupleType type)
Return a newly-created codec for the given CQL tuple type.Methods in org.apache.cassandra.cql3.functions.types with parameters of type TupleValue Modifier and Type Method Description T
SettableByIndexData. setTupleValue(int i, TupleValue v)
Sets thei
th value to the provided tuple value.T
SettableByNameData. setTupleValue(java.lang.String name, TupleValue v)
Sets the value for (all occurrences of) variablename
to the provided tuple value.
-