Uses of Class
org.apache.cassandra.cql3.functions.UserFunction
-
Packages that use UserFunction Package Description org.apache.cassandra.auth org.apache.cassandra.cql3.functions org.apache.cassandra.schema -
-
Uses of UserFunction in org.apache.cassandra.auth
Methods in org.apache.cassandra.auth with parameters of type UserFunction Modifier and Type Method Description static FunctionResource
FunctionResource. function(UserFunction function)
-
Uses of UserFunction in org.apache.cassandra.cql3.functions
Subclasses of UserFunction in org.apache.cassandra.cql3.functions Modifier and Type Class Description class
JavaBasedUDFunction
class
UDAggregate
Base class for user-defined-aggregates.class
UDFunction
Base class for User Defined Functions. -
Uses of UserFunction in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema that return types with arguments of type UserFunction Modifier and Type Method Description java.util.Optional<UserFunction>
UserFunctions. find(FunctionName name, java.util.List<AbstractType<?>> argTypes)
java.util.Optional<UserFunction>
UserFunctions. find(FunctionName name, java.util.List<AbstractType<?>> argTypes, UserFunctions.Filter filter)
Find the function with the specified namejava.util.Optional<UserFunction>
Schema. findUserFunction(FunctionName name, java.util.List<AbstractType<?>> argTypes)
Find the function with the specified name and arguments.java.util.Collection<UserFunction>
UserFunctions. get(FunctionName name)
Get all function overloads with the specified namejava.util.Collection<UserFunction>
Schema. getUserFunctions(FunctionName name)
Get all user-defined function overloads with the specified name.java.util.Iterator<UserFunction>
UserFunctions. iterator()
java.lang.Iterable<UserFunction>
UserFunctions. referencingUserType(java.nio.ByteBuffer name)
java.util.stream.Stream<UserFunction>
UserFunctions. stream()
Methods in org.apache.cassandra.schema with parameters of type UserFunction Modifier and Type Method Description UserFunctions.Builder
UserFunctions.Builder. add(UserFunction fun)
UserFunctions.Builder
UserFunctions.Builder. add(UserFunction... funs)
boolean
UserFunctions.Filter. test(UserFunction function)
UserFunctions
UserFunctions. with(UserFunction fun)
Create a Functions instance with the provided function addedUserFunctions
UserFunctions. withAddedOrUpdated(UserFunction function)
Method parameters in org.apache.cassandra.schema with type arguments of type UserFunction Modifier and Type Method Description UserFunctions.Builder
UserFunctions.Builder. add(java.lang.Iterable<? extends UserFunction> funs)
UserFunctions
UserFunctions. filter(java.util.function.Predicate<UserFunction> predicate)
-