Uses of Class
org.hibernate.query.sqm.FrameKind
-
Packages that use FrameKind Package Description org.hibernate.query.sqm org.hibernate.query.sqm.tree.expression org.hibernate.sql.ast.spi Package defining support for creating and consuming SQL ASTorg.hibernate.sql.ast.tree.expression Contracts related to expressions in a SQL tree -
-
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
SqmOver. getEndKind()
FrameKind
SqmOver. 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)
-
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)
-