Uses of Class
org.hibernate.query.sqm.FrameExclusion
-
Packages that use FrameExclusion Package Description org.hibernate.query.criteria Support for JPA criteria queries.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 FrameExclusion in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria with parameters of type FrameExclusion Modifier and Type Method Description JpaWindow
JpaWindow. frameExclude(FrameExclusion frameExclusion)
Set aFrameExclusion
for this window's frame. -
Uses of FrameExclusion in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return FrameExclusion Modifier and Type Method Description static FrameExclusion
FrameExclusion. valueOf(String name)
Returns the enum constant of this type with the specified name.static FrameExclusion[]
FrameExclusion. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of FrameExclusion in org.hibernate.query.sqm.tree.expression
Methods in org.hibernate.query.sqm.tree.expression that return FrameExclusion Modifier and Type Method Description FrameExclusion
SqmWindow. getExclusion()
Methods in org.hibernate.query.sqm.tree.expression with parameters of type FrameExclusion Modifier and Type Method Description JpaWindow
SqmWindow. frameExclude(FrameExclusion frameExclusion)
Constructors in org.hibernate.query.sqm.tree.expression with parameters of type FrameExclusion 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)
-
Uses of FrameExclusion in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type FrameExclusion 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 FrameExclusion in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression that return FrameExclusion Modifier and Type Method Description FrameExclusion
Over. getExclusion()
Constructors in org.hibernate.sql.ast.tree.expression with parameters of type FrameExclusion Constructor Description Over(Expression expression, List<Expression> partitions, List<SortSpecification> orderList, FrameMode mode, FrameKind startKind, Expression startExpression, FrameKind endKind, Expression endExpression, FrameExclusion exclusion)
-