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