Uses of Class
org.apache.cassandra.cql3.functions.types.UDTValue
-
Packages that use UDTValue 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 UDTValue in org.apache.cassandra.cql3.functions
Methods in org.apache.cassandra.cql3.functions that return UDTValue Modifier and Type Method Description UDTValue
UDFContext. newArgUDTValue(int argNum)
Creates a newUDTValue
instance for an argument.UDTValue
UDFContext. newArgUDTValue(java.lang.String argName)
Creates a newUDTValue
instance for an argument.UDTValue
UDFContextImpl. newArgUDTValue(int argNum)
UDTValue
UDFContextImpl. newArgUDTValue(java.lang.String argName)
UDTValue
UDFContext. newReturnUDTValue()
Creates a newUDTValue
instance for the return value.UDTValue
UDFContextImpl. newReturnUDTValue()
UDTValue
UDFContext. newUDTValue(java.lang.String udtName)
Creates a newUDTValue
instance by name in the same keyspace.UDTValue
UDFContextImpl. newUDTValue(java.lang.String udtName)
-
Uses of UDTValue in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return UDTValue Modifier and Type Method Description UDTValue
AbstractGettableData. getUDTValue(java.lang.String name)
Return the value forname
as a UDT value.UDTValue
GettableByIndexData. getUDTValue(int i)
Return thei
th value as a UDT value.UDTValue
GettableByNameData. getUDTValue(java.lang.String name)
Return the value forname
as a UDT value.UDTValue
UserType. newValue()
Returns a new empty value for this user type definition.Methods in org.apache.cassandra.cql3.functions.types that return types with arguments of type UDTValue Modifier and Type Method Description static TypeCodec<UDTValue>
TypeCodec. userType(UserType type)
Return a newly-created codec for the given user-defined CQL type.Methods in org.apache.cassandra.cql3.functions.types with parameters of type UDTValue Modifier and Type Method Description T
SettableByIndexData. setUDTValue(int i, UDTValue v)
Sets thei
th value to the provided UDT value.T
SettableByNameData. setUDTValue(java.lang.String name, UDTValue v)
Sets the value for (all occurrences of) variablename
to the provided UDT value.
-