Uses of Interface
org.jooq.WindowDefinition
-
Packages that use WindowDefinition Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of WindowDefinition in org.jooq
Methods in org.jooq that return WindowDefinition Modifier and Type Method Description WindowDefinition
Name. as()
Create an emptyWindowDefinition
from this name.WindowDefinition
Name. as(WindowSpecification window)
Create aWindowDefinition
from this name.Methods in org.jooq with parameters of type WindowDefinition Modifier and Type Method Description void
SelectQuery. addWindow(WindowDefinition... definitions)
Adds new window definitions to the window clause of the query.WindowFinalStep<T>
WindowOverStep. over(WindowDefinition definition)
Turn this aggregate function into a window function referencing a window definition.SelectQualifyStep<R>
SelectWindowStep. window(WindowDefinition... definitions)
Add aWINDOW
clause to the statement.Method parameters in org.jooq with type arguments of type WindowDefinition Modifier and Type Method Description void
SelectQuery. addWindow(Collection<? extends WindowDefinition> definitions)
Adds new window definitions to the window clause of the query.SelectQualifyStep<R>
SelectWindowStep. window(Collection<? extends WindowDefinition> definitions)
Add aWINDOW
clause to the statement.
-