Class WindowFunctionFrameUnitStage<T>
- java.lang.Object
-
- org.hotrod.runtime.livesql.expressions.analytics.WindowFunctionFrameUnitStage<T>
-
public class WindowFunctionFrameUnitStage<T> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description WindowFunctionFrameUnitStage(WindowExpression<T> function)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WindowFunctionFrameStartedStage<T>betweenCurrentRow()WindowFunctionFrameStartedStage<T>betweenFollowing(int offset)WindowFunctionFrameStartedStage<T>betweenPreceding(int offset)WindowFunctionFrameStartedStage<T>betweenUnboundedPreceding()WindowFunctionFrameBoundStage<T>currentRow()WindowFunctionFrameBoundStage<T>preceding(int offset)WindowFunctionFrameBoundStage<T>unboundedPreceding()
-
-
-
Constructor Detail
-
WindowFunctionFrameUnitStage
public WindowFunctionFrameUnitStage(WindowExpression<T> function)
-
-
Method Detail
-
unboundedPreceding
public WindowFunctionFrameBoundStage<T> unboundedPreceding()
-
preceding
public WindowFunctionFrameBoundStage<T> preceding(int offset)
-
currentRow
public WindowFunctionFrameBoundStage<T> currentRow()
-
betweenUnboundedPreceding
public WindowFunctionFrameStartedStage<T> betweenUnboundedPreceding()
-
betweenPreceding
public WindowFunctionFrameStartedStage<T> betweenPreceding(int offset)
-
betweenCurrentRow
public WindowFunctionFrameStartedStage<T> betweenCurrentRow()
-
betweenFollowing
public WindowFunctionFrameStartedStage<T> betweenFollowing(int offset)
-
-