Uses of Class
com.mckoi.database.FunctionDef
Packages that use FunctionDef
Package
Description
The core database classes for Mckoi.
These classes parse SQL statements in Mckoi.
-
Uses of FunctionDef in com.mckoi.database
Methods in com.mckoi.database with parameters of type FunctionDefModifier and TypeMethodDescriptionFunctionFactory.generateFunction
(FunctionDef function_def) Creates a Function object for the function with the given name with the given arguments.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 FunctionDefModifier and TypeMethodDescriptionfinal FunctionDef
SQL.Function()
final FunctionDef
SQL.JavaInstantiation()
static FunctionDef
Util.resolveFunctionName
(String name, Expression[] exp_list) Returns a Function object that represents the name and expression list (of parameters) of a function.