Uses of Interface
org.jooq.WindowSpecificationRowsStep
-
Packages that use WindowSpecificationRowsStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of WindowSpecificationRowsStep in org.jooq
Subinterfaces of WindowSpecificationRowsStep in org.jooq Modifier and Type Interface Description interface
WindowDefinition
A window definition.interface
WindowSpecificationOrderByStep
An intermediate step in the construction of aWindowSpecification
.interface
WindowSpecificationPartitionByStep
An intermediate step in the construction of aWindowSpecification
.Methods in org.jooq that return WindowSpecificationRowsStep Modifier and Type Method Description WindowSpecificationRowsStep
WindowSpecificationOrderByStep. orderBy(Collection<? extends OrderField<?>> fields)
Add anORDER BY
clause to the window specification.WindowSpecificationRowsStep
WindowSpecificationOrderByStep. orderBy(OrderField<?>... fields)
Add anORDER BY
clause to the window specification. -
Uses of WindowSpecificationRowsStep in org.jooq.impl
Methods in org.jooq.impl that return WindowSpecificationRowsStep Modifier and Type Method Description static WindowSpecificationRowsStep
DSL. orderBy(Collection<? extends OrderField<?>> fields)
Create aWindowSpecification
with anORDER BY
clause.static WindowSpecificationRowsStep
DSL. orderBy(Field<?>... fields)
Create aWindowSpecification
with anORDER BY
clause.static WindowSpecificationRowsStep
DSL. orderBy(OrderField<?>... fields)
Create aWindowSpecification
with anORDER BY
clause.
-