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 UserDefinedFunction
Parser. 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 class
FunctionAlias
Represents a user-defined function, or alias.class
UserAggregate
Represents 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. functionsAndAggregates
Methods in org.h2.schema that return UserDefinedFunction Modifier and Type Method Description UserDefinedFunction
Schema. 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()
-