FunctionFactory.FF_FunctionInfo
public interface FunctionInfo
Modifier and Type | Field | Description |
---|---|---|
static int |
AGGREGATE |
A type that represents an aggregate function.
|
static int |
STATE_BASED |
A function that is non-aggregate but whose return value is not guarenteed
to be the same given the identical parameters over subsequent calls.
|
static int |
STATIC |
A type that represents a static function.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getFunctionFactoryName() |
The name of the function factory class that this function is handled by.
|
java.lang.String |
getName() |
The name of the function as used by the SQL grammar to reference it.
|
int |
getType() |
The type of function, either STATIC, AGGREGATE or STATE_BASED (eg.
|
static final int STATIC
static final int AGGREGATE
static final int STATE_BASED
java.lang.String getName()
int getType()
java.lang.String getFunctionFactoryName()
Copyright © 2018. All rights reserved.