Uses of Enum
com.blazebit.persistence.criteria.BlazeWindowFrameKind
-
Uses of BlazeWindowFrameKind in com.blazebit.persistence.criteria
Methods in com.blazebit.persistence.criteria that return BlazeWindowFrameKindModifier and TypeMethodDescriptionBlazeWindow.getFrameEndKind()Returns the frame end kind used for this window, or null if it uses a special frame end type.BlazeWindow.getFrameStartKind()Returns the frame start kind used for this window, or null if it uses a special frame start type.static BlazeWindowFrameKindReturns the enum constant of this type with the specified name.static BlazeWindowFrameKind[]BlazeWindowFrameKind.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.blazebit.persistence.criteria with parameters of type BlazeWindowFrameKindModifier and TypeMethodDescriptionBlazeWindow.groups(Expression<Integer> start, BlazeWindowFrameKind startKind) Sets the window frame to the GROUPS mode with the given start and CURRENT ROW as end type.BlazeWindow.groupsBetween(BlazeWindowFrameStartType start, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the GROUPS mode with the given start and end.BlazeWindow.groupsBetween(Expression<Integer> start, BlazeWindowFrameKind startKind, BlazeWindowFrameEndType end) Sets the window frame to the GROUPS mode with the given start and end.BlazeWindow.groupsBetween(Expression<Integer> start, BlazeWindowFrameKind startKind, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the GROUPS mode with the given start and end.BlazeWindow.range(Expression<?> start, BlazeWindowFrameKind startKind) Sets the window frame to the RANGE mode with the given start and CURRENT ROW as end type.BlazeWindow.rangeBetween(BlazeWindowFrameStartType start, Expression<?> end, BlazeWindowFrameKind endKind) Sets the window frame to the RANGE mode with the given start and end.BlazeWindow.rangeBetween(Expression<?> start, BlazeWindowFrameKind startKind, BlazeWindowFrameEndType end) Sets the window frame to the RANGE mode with the given start and end.BlazeWindow.rangeBetween(Expression<?> start, BlazeWindowFrameKind startKind, Expression<?> end, BlazeWindowFrameKind endKind) Sets the window frame to the RANGE mode with the given start and end.BlazeWindow.rows(Expression<Integer> start, BlazeWindowFrameKind startKind) Sets the window frame to the ROWS mode with the given start and CURRENT ROW as end type.BlazeWindow.rowsBetween(BlazeWindowFrameStartType start, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the ROWS mode with the given start and end.BlazeWindow.rowsBetween(Expression<Integer> start, BlazeWindowFrameKind startKind, BlazeWindowFrameEndType end) Sets the window frame to the ROWS mode with the given start and end.BlazeWindow.rowsBetween(Expression<Integer> start, BlazeWindowFrameKind startKind, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the ROWS mode with the given start and end.