Uses of Class
org.h2.expression.analysis.WindowFrame
-
Packages that use WindowFrame Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.expression.aggregate Aggregate functions.org.h2.expression.analysis Base classes for data analysis operations and implementations of window functions. -
-
Uses of WindowFrame in org.h2.command
Methods in org.h2.command that return WindowFrame Modifier and Type Method Description private WindowFrame
Parser. readWindowFrame()
-
Uses of WindowFrame in org.h2.expression.aggregate
Methods in org.h2.expression.aggregate with parameters of type WindowFrame Modifier and Type Method Description private static boolean
AbstractAggregate. checkVariableBounds(WindowFrame frame, java.util.ArrayList<Value[]> ordered)
-
Uses of WindowFrame in org.h2.expression.analysis
Fields in org.h2.expression.analysis declared as WindowFrame Modifier and Type Field Description private WindowFrame
Window. frame
Methods in org.h2.expression.analysis that return WindowFrame Modifier and Type Method Description WindowFrame
Window. getWindowFrame()
Returns window frame, or null.Constructors in org.h2.expression.analysis with parameters of type WindowFrame Constructor Description Window(java.lang.String parent, java.util.ArrayList<Expression> partitionBy, java.util.ArrayList<QueryOrderBy> orderBy, WindowFrame frame)
Creates a new instance of window clause.
-