Uses of Class
org.h2.schema.FunctionAlias
-
Packages that use FunctionAlias Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.expression.function Functions.org.h2.expression.function.table Table value functions.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). -
-
Uses of FunctionAlias in org.h2.command
Methods in org.h2.command that return FunctionAlias Modifier and Type Method Description private FunctionAlias
Parser. getFunctionAliasWithinPath(java.lang.String name, Schema schema)
-
Uses of FunctionAlias in org.h2.expression.function
Fields in org.h2.expression.function declared as FunctionAlias Modifier and Type Field Description private FunctionAlias
JavaFunction. functionAlias
Constructors in org.h2.expression.function with parameters of type FunctionAlias Constructor Description JavaFunction(FunctionAlias functionAlias, Expression[] args)
-
Uses of FunctionAlias in org.h2.expression.function.table
Fields in org.h2.expression.function.table declared as FunctionAlias Modifier and Type Field Description private FunctionAlias
JavaTableFunction. functionAlias
Constructors in org.h2.expression.function.table with parameters of type FunctionAlias Constructor Description JavaTableFunction(FunctionAlias functionAlias, Expression[] args)
-
Uses of FunctionAlias in org.h2.schema
Methods in org.h2.schema that return FunctionAlias Modifier and Type Method Description FunctionAlias
Schema. findFunction(java.lang.String functionAlias)
Try to find a user defined function with this name.static FunctionAlias
FunctionAlias. newInstance(Schema schema, int id, java.lang.String name, java.lang.String javaClassMethod, boolean force)
Create a new alias based on a method name.static FunctionAlias
FunctionAlias. newInstanceFromSource(Schema schema, int id, java.lang.String name, java.lang.String source, boolean force)
Create a new alias based on source code.
-