Uses of Class
org.h2.expression.analysis.WindowFunctionType
-
Packages that use WindowFunctionType Package Description org.h2.expression.analysis Base classes for data analysis operations and implementations of window functions. -
-
Uses of WindowFunctionType in org.h2.expression.analysis
Fields in org.h2.expression.analysis declared as WindowFunctionType Modifier and Type Field Description private WindowFunctionType
WindowFunction. type
Methods in org.h2.expression.analysis that return WindowFunctionType Modifier and Type Method Description static WindowFunctionType
WindowFunctionType. get(java.lang.String name)
Returns the type of window function with the specified name, or null.WindowFunctionType
WindowFunction. getFunctionType()
Returns the type of this function.static WindowFunctionType
WindowFunctionType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WindowFunctionType[]
WindowFunctionType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.h2.expression.analysis with parameters of type WindowFunctionType Modifier and Type Method Description static int
WindowFunction. getMaxArgumentCount(WindowFunctionType type)
Returns maximal number of arguments for the specified type.static int
WindowFunction. getMinArgumentCount(WindowFunctionType type)
Returns minimal number of arguments for the specified type.Constructors in org.h2.expression.analysis with parameters of type WindowFunctionType Constructor Description WindowFunction(WindowFunctionType type, Select select, Expression[] args)
Creates new instance of a window function.
-