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 extendingHibernateCriteriaBuilderwith 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 JpaWindowFrameHibernateCriteriaBuilder. frameBetweenFollowing(int offset)JpaWindowFrameHibernateCriteriaBuilder. frameBetweenFollowing(Expression<?> offset)Create a window frame of typeFrameKind.OFFSET_FOLLOWINGto use withJpaWindows.JpaWindowFrameHibernateCriteriaBuilder. frameBetweenPreceding(int offset)JpaWindowFrameHibernateCriteriaBuilder. frameBetweenPreceding(Expression<?> offset)Create window frame of typeFrameKind.OFFSET_PRECEDINGto use withJpaWindows.JpaWindowFrameHibernateCriteriaBuilder. frameCurrentRow()Create a window frame of typeFrameKind.CURRENT_ROWto use withJpaWindows.JpaWindowFrameHibernateCriteriaBuilder. frameUnboundedFollowing()Create a window frame of typeFrameKind.UNBOUNDED_FOLLOWINGto use withJpaWindows.JpaWindowFrameHibernateCriteriaBuilder. frameUnboundedPreceding()Create a window frame of typeFrameKind.UNBOUNDED_PRECEDINGto use withJpaWindows.Methods in org.hibernate.query.criteria with parameters of type JpaWindowFrame Modifier and Type Method Description JpaWindowJpaWindow. frameGroups(JpaWindowFrame startFrame, JpaWindowFrame endFrame)Add aGROUPSframe clause to the window and define start and endJpaWindowFramespecifications.JpaWindowJpaWindow. frameRange(JpaWindowFrame startFrame, JpaWindowFrame endFrame)Add aRANGEframe clause to the window and define start and endJpaWindowFramespecifications.JpaWindowJpaWindow. frameRows(JpaWindowFrame startFrame, JpaWindowFrame endFrame)Add aROWSframe clause to the window and define start and endJpaWindowFramespecifications. -
Uses of JpaWindowFrame in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaWindowFrame Modifier and Type Method Description JpaWindowFrameHibernateCriteriaBuilderDelegate. frameBetweenFollowing(int offset)JpaWindowFrameHibernateCriteriaBuilderDelegate. frameBetweenFollowing(Expression<?> offset)JpaWindowFrameHibernateCriteriaBuilderDelegate. frameBetweenPreceding(int offset)JpaWindowFrameHibernateCriteriaBuilderDelegate. frameBetweenPreceding(Expression<?> offset)JpaWindowFrameHibernateCriteriaBuilderDelegate. frameCurrentRow()JpaWindowFrameHibernateCriteriaBuilderDelegate. frameUnboundedFollowing()JpaWindowFrameHibernateCriteriaBuilderDelegate. 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 classSqmWindowFrameMethods in org.hibernate.query.sqm.tree.expression with parameters of type JpaWindowFrame Modifier and Type Method Description JpaWindowSqmWindow. frameGroups(JpaWindowFrame startFrame, JpaWindowFrame endFrame)JpaWindowSqmWindow. frameRange(JpaWindowFrame startFrame, JpaWindowFrame endFrame)JpaWindowSqmWindow. frameRows(JpaWindowFrame startFrame, JpaWindowFrame endFrame)
-