Uses of Class
org.h2.schema.UserDefinedFunction
-
Packages that use UserDefinedFunction Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). -
-
Uses of UserDefinedFunction in org.h2.command
Methods in org.h2.command that return UserDefinedFunction Modifier and Type Method Description private UserDefinedFunctionParser. findUserDefinedFunctionWithinPath(Schema schema, java.lang.String name) -
Uses of UserDefinedFunction in org.h2.schema
Subclasses of UserDefinedFunction in org.h2.schema Modifier and Type Class Description classFunctionAliasRepresents a user-defined function, or alias.classUserAggregateRepresents a user-defined aggregate function.Fields in org.h2.schema with type parameters of type UserDefinedFunction Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,UserDefinedFunction>Schema. functionsAndAggregatesMethods in org.h2.schema that return UserDefinedFunction Modifier and Type Method Description UserDefinedFunctionSchema. findFunctionOrAggregate(java.lang.String name)Try to find a user defined function or aggregate function with the specified name.Methods in org.h2.schema that return types with arguments of type UserDefinedFunction Modifier and Type Method Description java.util.Collection<UserDefinedFunction>Schema. getAllFunctionsAndAggregates()
-