Uses of Interface
org.hibernate.query.criteria.JpaWindowFrame
Packages that use JpaWindowFrame
Package
Description
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
SPI for extending
HibernateCriteriaBuilder
with additional functionality by registering a Service
.Nodes representing expressions in the SQM tree.
-
Uses of JpaWindowFrame in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaWindowFrameModifier and TypeMethodDescriptionHibernateCriteriaBuilder.frameBetweenFollowing
(int offset) HibernateCriteriaBuilder.frameBetweenFollowing
(Expression<?> offset) Create a window frame of typeFrameKind.OFFSET_FOLLOWING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameBetweenPreceding
(int offset) HibernateCriteriaBuilder.frameBetweenPreceding
(Expression<?> offset) Create window frame of typeFrameKind.OFFSET_PRECEDING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameCurrentRow()
Create a window frame of typeFrameKind.CURRENT_ROW
to use withJpaWindow
s.HibernateCriteriaBuilder.frameUnboundedFollowing()
Create a window frame of typeFrameKind.UNBOUNDED_FOLLOWING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameUnboundedPreceding()
Create a window frame of typeFrameKind.UNBOUNDED_PRECEDING
to use withJpaWindow
s.Methods in org.hibernate.query.criteria with parameters of type JpaWindowFrameModifier and TypeMethodDescriptionJpaWindow.frameGroups
(JpaWindowFrame startFrame, JpaWindowFrame endFrame) Add aGROUPS
frame clause to the window and define start and endJpaWindowFrame
specifications.JpaWindow.frameRange
(JpaWindowFrame startFrame, JpaWindowFrame endFrame) Add aRANGE
frame clause to the window and define start and endJpaWindowFrame
specifications.JpaWindow.frameRows
(JpaWindowFrame startFrame, JpaWindowFrame endFrame) Add aROWS
frame clause to the window and define start and endJpaWindowFrame
specifications. -
Uses of JpaWindowFrame in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaWindowFrameModifier and TypeMethodDescriptionHibernateCriteriaBuilderDelegate.frameBetweenFollowing
(int offset) HibernateCriteriaBuilderDelegate.frameBetweenFollowing
(Expression<?> offset) HibernateCriteriaBuilderDelegate.frameBetweenPreceding
(int offset) HibernateCriteriaBuilderDelegate.frameBetweenPreceding
(Expression<?> offset) HibernateCriteriaBuilderDelegate.frameCurrentRow()
HibernateCriteriaBuilderDelegate.frameUnboundedFollowing()
HibernateCriteriaBuilderDelegate.frameUnboundedPreceding()
-
Uses of JpaWindowFrame in org.hibernate.query.sqm.tree.expression
Classes in org.hibernate.query.sqm.tree.expression that implement JpaWindowFrameMethods in org.hibernate.query.sqm.tree.expression with parameters of type JpaWindowFrameModifier and TypeMethodDescriptionSqmWindow.frameGroups
(JpaWindowFrame startFrame, JpaWindowFrame endFrame) SqmWindow.frameRange
(JpaWindowFrame startFrame, JpaWindowFrame endFrame) SqmWindow.frameRows
(JpaWindowFrame startFrame, JpaWindowFrame endFrame)