Uses of Class
org.hibernate.query.sqm.FetchClauseType
-
Packages that use FetchClauseType Package Description org.hibernate.dialect org.hibernate.query.criteria Hibernate's support for JPA criteria queries.org.hibernate.query.sqm org.hibernate.query.sqm.tree.select org.hibernate.sql.ast.spi Package defining support for creating and consuming SQL ASTorg.hibernate.sql.ast.tree.select -
-
Uses of FetchClauseType in org.hibernate.dialect
Methods in org.hibernate.dialect that return FetchClauseType Modifier and Type Method Description protected FetchClauseType
OracleSqlAstTranslator. getFetchClauseTypeForRowNumbering(QueryPart queryPart)
Methods in org.hibernate.dialect with parameters of type FetchClauseType Modifier and Type Method Description protected void
OracleSqlAstTranslator. emulateFetchOffsetWithWindowFunctions(QueryPart queryPart, Expression offsetExpression, Expression fetchExpression, FetchClauseType fetchClauseType, boolean emulateFetchClause)
boolean
Dialect. supportsFetchClause(FetchClauseType type)
Does this dialect support the given fetch clause 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.criteria
Methods in org.hibernate.query.criteria that return FetchClauseType Modifier and Type Method Description FetchClauseType
JpaCriteriaQuery. getFetchClauseType()
FetchClauseType
JpaQueryPart. getFetchClauseType()
FetchClauseType
JpaSubQuery. getFetchClauseType()
Methods in org.hibernate.query.criteria with parameters of type FetchClauseType Modifier and Type Method Description JpaCriteriaQuery<T>
JpaCriteriaQuery. fetch(Number fetch, FetchClauseType fetchClauseType)
JpaCriteriaQuery<T>
JpaCriteriaQuery. fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType)
JpaSubQuery<T>
JpaSubQuery. fetch(Number fetch, FetchClauseType fetchClauseType)
JpaSubQuery<T>
JpaSubQuery. fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType)
JpaQueryGroup<T>
JpaQueryGroup. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
JpaQueryPart<T>
JpaQueryPart. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
JpaQueryStructure<T>
JpaQueryStructure. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
-
Uses of FetchClauseType in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return FetchClauseType Modifier and Type Method Description static FetchClauseType
FetchClauseType. valueOf(String name)
Returns the enum constant of this type with the specified name.static FetchClauseType[]
FetchClauseType. values()
Returns an array containing the constants of this enum type, 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 FetchClauseType Modifier and Type Method Description FetchClauseType
SqmQueryPart. getFetchClauseType()
FetchClauseType
SqmSelectStatement. getFetchClauseType()
FetchClauseType
SqmSubQuery. getFetchClauseType()
Methods in org.hibernate.query.sqm.tree.select with parameters of type FetchClauseType Modifier and Type Method Description JpaCriteriaQuery<T>
SqmSelectStatement. fetch(Number fetch, FetchClauseType fetchClauseType)
JpaCriteriaQuery<T>
SqmSelectStatement. fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType)
JpaSubQuery<T>
SqmSubQuery. fetch(Number fetch, FetchClauseType fetchClauseType)
JpaSubQuery<T>
SqmSubQuery. fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType)
SqmQueryGroup<T>
SqmQueryGroup. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
JpaQueryPart<T>
SqmQueryPart. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
SqmQuerySpec<T>
SqmQuerySpec. setFetch(JpaExpression<?> fetch, FetchClauseType fetchClauseType)
void
SqmQueryPart. setFetchExpression(SqmExpression<?> fetchExpression, FetchClauseType fetchClauseType)
-
Uses of FetchClauseType in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return FetchClauseType Modifier and Type Method Description protected FetchClauseType
AbstractSqlAstTranslator. getFetchClauseTypeForRowNumbering(QueryPart queryPartForRowNumbering)
Methods in org.hibernate.sql.ast.spi with parameters of type FetchClauseType Modifier and Type Method Description protected 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 FetchClauseType Modifier and Type Method Description FetchClauseType
QueryPart. getFetchClauseType()
Methods in org.hibernate.sql.ast.tree.select with parameters of type FetchClauseType Modifier and Type Method Description void
QueryPart. setFetchClauseExpression(Expression fetchClauseExpression, FetchClauseType fetchClauseType)
-