Uses of Enum
org.h2.expression.analysis.WindowFunctionType
Packages that use WindowFunctionType
Package
Description
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 WindowFunctionTypeMethods in org.h2.expression.analysis that return WindowFunctionTypeModifier and TypeMethodDescriptionstatic WindowFunctionType
Returns the type of window function with the specified name, or null.WindowFunction.getFunctionType()
Returns the type of this function.static WindowFunctionType
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 WindowFunctionTypeModifier and TypeMethodDescriptionstatic 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 WindowFunctionTypeModifierConstructorDescriptionWindowFunction
(WindowFunctionType type, Select select, Expression[] args) Creates new instance of a window function.