- Type Parameters:
- T- The function return type
- All Superinterfaces:
- WindowIgnoreNullsStep<T>,- 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 SummaryModifier and TypeMethodDescription@NotNull WindowIgnoreNullsStep<T>Add anFROM FIRSTclause to the window function.@NotNull WindowIgnoreNullsStep<T>fromLast()Add aFROM LASTclause to the window function.Methods inherited from interface org.jooq.WindowIgnoreNullsStepignoreNulls, respectNulls
- 
Method Details- 
fromFirst@NotNull @Support({DB2,EXASOL,FIREBIRD_4_0,H2,ORACLE,SNOWFLAKE}) @NotNull WindowIgnoreNullsStep<T> fromFirst()Add anFROM FIRSTclause to the window function. This might not be supported by all dialects.
- 
fromLast@NotNull @Support({DB2,EXASOL,FIREBIRD_4_0,H2,ORACLE,SNOWFLAKE}) @NotNull WindowIgnoreNullsStep<T> fromLast()Add aFROM LASTclause to the window function. This might not be supported by all dialects.
 
-