Uses of Enum Class
org.hibernate.query.common.FetchClauseType
Packages that use FetchClauseType
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
Common APIs used internally, in the SQL tree,
in the dialects, and in the criteria query API.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
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 TypeMethodDescriptionboolean
Dialect.supportsFetchClause
(FetchClauseType type) Does this dialect support the givenFETCH
clause type.boolean
DialectDelegateWrapper.supportsFetchClause
(FetchClauseType type) boolean
H2Dialect.supportsFetchClause
(FetchClauseType type) boolean
OracleDialect.supportsFetchClause
(FetchClauseType type) boolean
PostgreSQLDialect.supportsFetchClause
(FetchClauseType type) boolean
SQLServerDialect.supportsFetchClause
(FetchClauseType type) -
Uses of FetchClauseType in org.hibernate.query.common
Methods in org.hibernate.query.common that return FetchClauseTypeModifier and TypeMethodDescriptionstatic FetchClauseType
Returns 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.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.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) void
SqmQueryPart.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 FetchClauseType
AbstractSqlAstTranslator.getFetchClauseTypeForRowNumbering
(QueryPart queryPartForRowNumbering) Methods in org.hibernate.sql.ast.spi with parameters of type FetchClauseTypeModifier and TypeMethodDescriptionprotected void
AbstractSqlAstTranslator.emulateFetchOffsetWithWindowFunctions
(QueryPart queryPart, Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean emulateFetchClause) protected void
AbstractSqlAstTranslator.renderFetch
(Expression fetchExpression, Expression offsetExpressionToAdd, FetchClauseType fetchClauseType) protected void
AbstractSqlAstTranslator.renderOffsetFetchClause
(Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean renderOffsetRowsKeyword) protected void
AbstractSqlAstTranslator.renderTopClause
(Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean addOffset, boolean needsParenthesis) protected void
AbstractSqlAstTranslator.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 TypeMethodDescriptionvoid
QueryPart.setFetchClauseExpression
(Expression fetchClauseExpression, FetchClauseType fetchClauseType)