Package com.mckoi.database
Class FunctionFactory.FF_FunctionInfo
java.lang.Object
com.mckoi.database.FunctionFactory.FF_FunctionInfo
- All Implemented Interfaces:
FunctionInfo
- Enclosing class:
- FunctionFactory
An implementation of FunctionInfo.
-
Field Summary
Fields inherited from interface com.mckoi.database.FunctionInfo
AGGREGATE, STATE_BASED, STATIC
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
FF_FunctionInfo
-
-
Method Details
-
getName
Description copied from interface:FunctionInfo
The name of the function as used by the SQL grammar to reference it.- Specified by:
getName
in interfaceFunctionInfo
-
getType
public int getType()Description copied from interface:FunctionInfo
The type of function, either STATIC, AGGREGATE or STATE_BASED (eg. result is not dependant entirely from input but from another state for example RANDOM and UNIQUEKEY functions).- Specified by:
getType
in interfaceFunctionInfo
-
getConstructor
-
getFunctionFactoryName
Description copied from interface:FunctionInfo
The name of the function factory class that this function is handled by. For example, "com.mckoi.database.InternalFunctionFactory".- Specified by:
getFunctionFactoryName
in interfaceFunctionInfo
-