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 FunctionAliasParser. 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 FunctionAliasJavaFunction. functionAliasConstructors 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 FunctionAliasJavaTableFunction. functionAliasConstructors 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 FunctionAliasSchema. findFunction(java.lang.String functionAlias)Try to find a user defined function with this name.static FunctionAliasFunctionAlias. 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 FunctionAliasFunctionAlias. newInstanceFromSource(Schema schema, int id, java.lang.String name, java.lang.String source, boolean force)Create a new alias based on source code.
-