-
- Type Parameters:
T
- The function return type
- All Superinterfaces:
WindowOverStep<T>
- All Known Subinterfaces:
WindowFromFirstLastStep<T>
public interface WindowIgnoreNullsStep<T> extends WindowOverStep<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 @NotNull WindowOverStep<T>
ignoreNulls()
Add anIGNORE NULLS
clause to the window function.@NotNull WindowOverStep<T>
respectNulls()
Add aRESPECT NULLS
clause to the window function.
-