Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
WindowOrderByStep<T>
This type is used for the window function DSL API.
|
interface |
WindowPartitionByStep<T>
This type is used for the window function DSL API.
|
interface |
WindowRowsStep<T>
This type is used for the window function DSL API.
|
Modifier and Type | Method and Description |
---|---|
WindowFinalStep<T> |
WindowRowsAndStep.andCurrentRow()
Add a
... |
WindowFinalStep<T> |
WindowRowsAndStep.andFollowing(int number)
Add a
... |
WindowFinalStep<T> |
WindowRowsAndStep.andPreceding(int number)
Add a
... |
WindowFinalStep<T> |
WindowRowsAndStep.andUnboundedFollowing()
Add a
... |
WindowFinalStep<T> |
WindowRowsAndStep.andUnboundedPreceding()
Add a
... |
WindowFinalStep<T> |
WindowOverStep.over(Name name)
Turn this aggregate function into a window function referencing a window
name.
|
WindowFinalStep<T> |
AggregateFunction.over(Name name)
Turn this aggregate function into a window function referencing a window
name.
|
WindowFinalStep<T> |
WindowOverStep.over(String name)
Turn this aggregate function into a window function referencing a window
name.
|
WindowFinalStep<T> |
AggregateFunction.over(String name)
Turn this aggregate function into a window function referencing a window
name.
|
WindowFinalStep<T> |
WindowOverStep.over(WindowDefinition definition)
Turn this aggregate function into a window function referencing a window
definition.
|
WindowFinalStep<T> |
AggregateFunction.over(WindowDefinition definition)
Turn this aggregate function into a window function referencing a window
definition.
|
WindowFinalStep<T> |
WindowOverStep.over(WindowSpecification specification)
Turn this aggregate function into a window function.
|
WindowFinalStep<T> |
AggregateFunction.over(WindowSpecification specification)
Turn this aggregate function into a window function.
|
WindowFinalStep<T> |
WindowRowsStep.rowsCurrentRow()
Add a
ROWS CURRENT ROW frame clause to the window function. |
WindowFinalStep<T> |
WindowRowsStep.rowsFollowing(int number)
Add a
ROWS [number] FOLLOWING frame clause to the window
function. |
WindowFinalStep<T> |
WindowRowsStep.rowsPreceding(int number)
Add a
ROWS [number] PRECEDING frame clause to the window
function. |
WindowFinalStep<T> |
WindowRowsStep.rowsUnboundedFollowing()
Add a
ROWS UNBOUNDED FOLLOWING frame clause to the window
function. |
WindowFinalStep<T> |
WindowRowsStep.rowsUnboundedPreceding()
Add a
ROWS UNBOUNDED PRECEDING frame clause to the window
function. |
Copyright © 2014. All Rights Reserved.