-
- Type Parameters:
T
- The function return type
- All Superinterfaces:
WindowIgnoreNullsStep<T>
,WindowOverStep<T>
public interface WindowFromFirstLastStep<T> extends WindowIgnoreNullsStep<T>
This type is used for the window function DSL API.Example:
field.firstValue() .ignoreNulls() .over() .partitionBy(AUTHOR_ID) .orderBy(PUBLISHED_IN.asc()) .rowsBetweenUnboundedPreceding() .andUnboundedFollowing()
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WindowIgnoreNullsStep<T>
fromFirst()
Add anFROM FIRST
clause to the window function.WindowIgnoreNullsStep<T>
fromLast()
Add aFROM LAST
clause to the window function.-
Methods inherited from interface org.jooq.WindowIgnoreNullsStep
ignoreNulls, respectNulls
-
-