public interface FunctionInfo
Modifier and Type | Field and 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 and Description |
---|---|
String |
getFunctionFactoryName()
The name of the function factory class that this function is handled by.
|
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
String getName()
int getType()
String getFunctionFactoryName()
Copyright © 2015. All rights reserved.