Uses of Class
com.mckoi.database.FunctionDef
-
Packages that use FunctionDef Package Description com.mckoi.database The core database classes for Mckoi.com.mckoi.database.sql These classes parse SQL statements in Mckoi. -
-
Uses of FunctionDef in com.mckoi.database
Methods in com.mckoi.database with parameters of type FunctionDef Modifier and Type Method Description Function
FunctionFactory. generateFunction(FunctionDef function_def)
Creates a Function object for the function with the given name with the given arguments.Function
FunctionLookup. generateFunction(FunctionDef function_def)
Generate the Function given a FunctionDef object.boolean
FunctionFactory. isAggregate(FunctionDef function_def)
Returns true if the function defined by FunctionDef is an aggregate function, or false otherwise.boolean
FunctionLookup. isAggregate(FunctionDef function_def)
Returns true if the function defined by FunctionDef is an aggregate function, or false otherwise. -
Uses of FunctionDef in com.mckoi.database.sql
Methods in com.mckoi.database.sql that return FunctionDef Modifier and Type Method Description FunctionDef
SQL. Function()
FunctionDef
SQL. JavaInstantiation()
static FunctionDef
Util. resolveFunctionName(java.lang.String name, Expression[] exp_list)
Returns a Function object that represents the name and expression list (of parameters) of a function.
-