Package org.sqlite
Class Function.Window
- java.lang.Object
-
- org.sqlite.Function
-
- org.sqlite.Function.Aggregate
-
- org.sqlite.Function.Window
-
- All Implemented Interfaces:
Cloneable
- Enclosing class:
- Function
public abstract static class Function.Window extends Function.Aggregate
Provides an interface for creating SQLite user-defined window functions.- See Also:
Function.Aggregate
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.sqlite.Function
Function.Aggregate, Function.Window
-
-
Field Summary
-
Fields inherited from class org.sqlite.Function
FLAG_DETERMINISTIC
-
-
Constructor Summary
Constructors Constructor Description Window()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract voidxInverse()Defines the abstract window callback functionprotected abstract voidxValue()Defines the abstract window callback function-
Methods inherited from class org.sqlite.Function.Aggregate
clone, xFinal, xFunc, xStep
-
Methods inherited from class org.sqlite.Function
args, create, create, create, destroy, destroy, error, result, result, result, result, result, result, value_blob, value_double, value_int, value_long, value_text, value_type
-
-
-
-
Method Detail
-
xInverse
protected abstract void xInverse() throws SQLExceptionDefines the abstract window callback function
-
xValue
protected abstract void xValue() throws SQLExceptionDefines the abstract window callback function
-
-