Uses of Enum Class
org.hibernate.query.sqm.FetchClauseType
Packages that use FetchClauseType
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
This package defines a semantic model of HQL queries.
Nodes representing
select statements in the SQM tree.Package defining support for creating and consuming a SQL AST.
AST nodes representing
select statements in a SQL tree.-
Uses of FetchClauseType in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionbooleanDialect.supportsFetchClause(FetchClauseType type) Does this dialect support the givenFETCHclause type.booleanDialectDelegateWrapper.supportsFetchClause(FetchClauseType type) booleanH2Dialect.supportsFetchClause(FetchClauseType type) booleanOracleDialect.supportsFetchClause(FetchClauseType type) booleanPostgreSQLDialect.supportsFetchClause(FetchClauseType type) booleanSQLServerDialect.supportsFetchClause(FetchClauseType type) -
Uses of FetchClauseType in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return FetchClauseTypeModifier and TypeMethodDescriptionCriteriaDefinition.getFetchClauseType()JpaCriteriaQuery.getFetchClauseType()JpaQueryPart.getFetchClauseType()JpaSubQuery.getFetchClauseType()Methods in org.hibernate.query.criteria with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionCriteriaDefinition.fetch(Number fetch, FetchClauseType fetchClauseType) CriteriaDefinition.fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaCriteriaQuery.fetch(Number fetch, FetchClauseType fetchClauseType) JpaCriteriaQuery.fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaSubQuery.fetch(Number fetch, FetchClauseType fetchClauseType) JpaSubQuery.fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaQueryGroup.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaQueryPart.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaQueryStructure.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) -
Uses of FetchClauseType in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return FetchClauseTypeModifier and TypeMethodDescriptionstatic FetchClauseTypeReturns the enum constant of this class with the specified name.static FetchClauseType[]FetchClauseType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of FetchClauseType in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return FetchClauseTypeModifier and TypeMethodDescriptionSqmQueryPart.getFetchClauseType()SqmSelectStatement.getFetchClauseType()SqmSubQuery.getFetchClauseType()Methods in org.hibernate.query.sqm.tree.select with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionSqmSelectStatement.fetch(Number fetch, FetchClauseType fetchClauseType) SqmSelectStatement.fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) SqmSubQuery.fetch(Number fetch, FetchClauseType fetchClauseType) SqmSubQuery.fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) SqmQueryGroup.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) SqmQueryPart.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) SqmQuerySpec.setFetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) voidSqmQueryPart.setFetchExpression(SqmExpression<? extends Number> fetchExpression, FetchClauseType fetchClauseType) -
Uses of FetchClauseType in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return FetchClauseTypeModifier and TypeMethodDescriptionprotected FetchClauseTypeAbstractSqlAstTranslator.getFetchClauseTypeForRowNumbering(QueryPart queryPartForRowNumbering) Methods in org.hibernate.sql.ast.spi with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionprotected voidAbstractSqlAstTranslator.emulateFetchOffsetWithWindowFunctions(QueryPart queryPart, Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean emulateFetchClause) protected voidAbstractSqlAstTranslator.renderFetch(Expression fetchExpression, Expression offsetExpressionToAdd, FetchClauseType fetchClauseType) protected voidAbstractSqlAstTranslator.renderOffsetFetchClause(Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean renderOffsetRowsKeyword) protected voidAbstractSqlAstTranslator.renderTopClause(Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean addOffset, boolean needsParenthesis) protected voidAbstractSqlAstTranslator.renderTopStartAtClause(Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType) -
Uses of FetchClauseType in org.hibernate.sql.ast.tree.select
Methods in org.hibernate.sql.ast.tree.select that return FetchClauseTypeMethods in org.hibernate.sql.ast.tree.select with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionvoidQueryPart.setFetchClauseExpression(Expression fetchClauseExpression, FetchClauseType fetchClauseType)