Uses of Enum
com.blazebit.persistence.criteria.BlazeWindowFrameStartType
Packages that use BlazeWindowFrameStartType
Package
Description
Blaze-Persistence JPA Criteria API extensions.
-
Uses of BlazeWindowFrameStartType in com.blazebit.persistence.criteria
Methods in com.blazebit.persistence.criteria that return BlazeWindowFrameStartTypeModifier and TypeMethodDescriptionBlazeWindow.getFrameStartType()Returns the frame start type used for this window.static BlazeWindowFrameStartTypeReturns the enum constant of this type with the specified name.static BlazeWindowFrameStartType[]BlazeWindowFrameStartType.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 BlazeWindowFrameStartTypeModifier and TypeMethodDescriptionBlazeWindow.groups(BlazeWindowFrameStartType start) Sets the window frame to the GROUPS mode with the given start and CURRENT ROW as end type.BlazeWindow.groupsBetween(BlazeWindowFrameStartType start, BlazeWindowFrameEndType end) Sets the window frame to the GROUPS mode with the given start and end.BlazeWindow.groupsBetween(BlazeWindowFrameStartType start, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the GROUPS mode with the given start and end.BlazeWindow.range(BlazeWindowFrameStartType start) Sets the window frame to the RANGE mode with the given start and CURRENT ROW as end type.BlazeWindow.rangeBetween(BlazeWindowFrameStartType start, BlazeWindowFrameEndType end) Sets the window frame to the RANGE mode with the given start and end.BlazeWindow.rangeBetween(BlazeWindowFrameStartType start, Expression<?> end, BlazeWindowFrameKind endKind) Sets the window frame to the RANGE mode with the given start and end.BlazeWindow.rows(BlazeWindowFrameStartType start) Sets the window frame to the ROWS mode with the given start and CURRENT ROW as end type.BlazeWindow.rowsBetween(BlazeWindowFrameStartType start, BlazeWindowFrameEndType end) Sets the window frame to the ROWS mode with the given start and end.BlazeWindow.rowsBetween(BlazeWindowFrameStartType start, Expression<Integer> end, BlazeWindowFrameKind endKind) Sets the window frame to the ROWS mode with the given start and end.