Uses of Class
org.hibernate.query.sqm.FrameKind
-
Packages that use FrameKind 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.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree. -
-
Uses of FrameKind in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return FrameKind Modifier and Type Method Description FrameKind
JpaWindowFrame. getKind()
Get theFrameKind
of this window frame. -
Uses of FrameKind in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return FrameKind Modifier and Type Method Description static FrameKind
FrameKind. valueOf(String name)
Returns the enum constant of this type with the specified name.static FrameKind[]
FrameKind. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of FrameKind in org.hibernate.query.sqm.tree.expression
Methods in org.hibernate.query.sqm.tree.expression that return FrameKind Modifier and Type Method Description FrameKind
SqmWindow. getEndKind()
FrameKind
SqmWindowFrame. getKind()
FrameKind
SqmWindow. getStartKind()
Constructors in org.hibernate.query.sqm.tree.expression with parameters of type FrameKind Constructor Description SqmOver(SqmExpression<T> expression, List<SqmExpression<?>> partitions, List<SqmSortSpecification> orderList, FrameMode mode, FrameKind startKind, SqmExpression<?> startExpression, FrameKind endKind, SqmExpression<?> endExpression, FrameExclusion exclusion)
SqmWindow(NodeBuilder nodeBuilder, List<SqmExpression<?>> partitions, List<SqmSortSpecification> orderList, FrameMode mode, FrameKind startKind, SqmExpression<?> startExpression, FrameKind endKind, SqmExpression<?> endExpression, FrameExclusion exclusion)
SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind)
SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind, SqmExpression<?> expression)
-
Uses of FrameKind in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type FrameKind Modifier and Type Method Description protected void
AbstractSqlAstTranslator. visitOverClause(List<Expression> partitionExpressions, List<SortSpecification> sortSpecifications, FrameMode mode, FrameKind startKind, Expression startExpression, FrameKind endKind, Expression endExpression, FrameExclusion exclusion, boolean orderedSetAggregate)
-
Uses of FrameKind in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression that return FrameKind Modifier and Type Method Description FrameKind
Over. getEndKind()
FrameKind
Over. getStartKind()
Constructors in org.hibernate.sql.ast.tree.expression with parameters of type FrameKind Constructor Description Over(Expression expression, List<Expression> partitions, List<SortSpecification> orderList, FrameMode mode, FrameKind startKind, Expression startExpression, FrameKind endKind, Expression endExpression, FrameExclusion exclusion)
-