Uses of Class
org.apache.cassandra.cql3.functions.types.UDTValue
Packages that use UDTValue
Package
Description
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 UDTValueModifier and TypeMethodDescriptionUDFContext.newArgUDTValue(int argNum) Creates a newUDTValueinstance for an argument.UDFContext.newArgUDTValue(String argName) Creates a newUDTValueinstance for an argument.UDFContextImpl.newArgUDTValue(int argNum) UDFContextImpl.newArgUDTValue(String argName) UDFContext.newReturnUDTValue()Creates a newUDTValueinstance for the return value.UDFContextImpl.newReturnUDTValue()UDFContext.newUDTValue(String udtName) Creates a newUDTValueinstance by name in the same keyspace.UDFContextImpl.newUDTValue(String udtName) -
Uses of UDTValue in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return UDTValueModifier and TypeMethodDescriptionAbstractGettableData.getUDTValue(String name) Return the value fornameas a UDT value.GettableByIndexData.getUDTValue(int i) Return theith value as a UDT value.GettableByNameData.getUDTValue(String name) Return the value fornameas a UDT value.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 UDTValueModifier and TypeMethodDescriptionReturn a newly-created codec for the given user-defined CQL type.Methods in org.apache.cassandra.cql3.functions.types with parameters of type UDTValueModifier and TypeMethodDescriptionSettableByIndexData.setUDTValue(int i, UDTValue v) Sets theith value to the provided UDT value.SettableByNameData.setUDTValue(String name, UDTValue v) Sets the value for (all occurrences of) variablenameto the provided UDT value.