Uses of Class
org.h2.engine.FunctionAlias

Packages that use FunctionAlias
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
 

Uses of FunctionAlias in org.h2.engine
 

Methods in org.h2.engine that return FunctionAlias
 FunctionAlias Database.findFunctionAlias(java.lang.String name)
          Get the user defined function if it exists, or null if not.
 

Methods in org.h2.engine that return types with arguments of type FunctionAlias
 ObjectArray<FunctionAlias> Database.getAllFunctionAliases()
           
 

Uses of FunctionAlias in org.h2.expression
 

Constructors in org.h2.expression with parameters of type FunctionAlias
JavaFunction(FunctionAlias functionAlias, Expression[] args)