T - The function return typepublic interface WindowIgnoreNullsStep<T> extends WindowOverStep<T>
 Example: 
 field.firstValue()
      .ignoreNulls()
      .over()
      .partitionBy(AUTHOR_ID)
      .orderBy(PUBLISHED_IN.asc())
      .rowsBetweenUnboundedPreceding()
      .andUnboundedFollowing()
 
| Modifier and Type | Method and Description | 
|---|---|
| WindowOverStep<T> | ignoreNulls()Add an  IGNORE NULLSclause to the window function. | 
| WindowOverStep<T> | respectNulls()Add a  RESPECT NULLSclause to the window function. | 
Copyright © 2014. All Rights Reserved.