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