Uses of Interface
org.jooq.WindowFinalStep

Packages that use WindowFinalStep
org.jooq   
 

Uses of WindowFinalStep in org.jooq
 

Subinterfaces of WindowFinalStep in org.jooq
 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.
 

Methods in org.jooq that return WindowFinalStep
 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> 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 © 2012. All Rights Reserved.