Uses of Interface
org.jooq.WindowOverStep

Packages that use WindowOverStep
org.jooq   
org.jooq.impl   
 

Uses of WindowOverStep in org.jooq
 

Subinterfaces of WindowOverStep in org.jooq
 interface AggregateFunction<T>
          An aggregate function is a special field that is usually used in a GROUP BY context.
 interface GroupConcatOrderByStep
          MySQL's GROUP_CONCAT function.
 interface GroupConcatSeparatorStep
          MySQL's GROUP_CONCAT function.
 interface WindowIgnoreNullsStep<T>
          This type is used for the window function DSL API.
 

Methods in org.jooq that return WindowOverStep
 WindowOverStep<T> WindowIgnoreNullsStep.ignoreNulls()
          Add an IGNORE NULLS clause to the window function.
 WindowOverStep<T> WindowIgnoreNullsStep.respectNulls()
          Add a RESPECT NULLS clause to the window function.
 

Uses of WindowOverStep in org.jooq.impl
 

Methods in org.jooq.impl that return WindowOverStep
static WindowOverStep<BigDecimal> Factory.cumeDist()
          The cume_dist() over ([analytic clause]) function.
static WindowOverStep<Integer> Factory.denseRank()
          The dense_rank() over ([analytic clause]) function.
static WindowOverStep<Integer> Factory.ntile(int number)
          The ntile([number]) over ([analytic clause]) function.
static WindowOverStep<BigDecimal> Factory.percentRank()
          The precent_rank() over ([analytic clause]) function.
static WindowOverStep<Integer> Factory.rank()
          The rank_over() over ([analytic clause]) function.
static WindowOverStep<Integer> Factory.rowNumber()
          The row_number() over ([analytic clause]) function.
 



Copyright © 2012. All Rights Reserved.