Uses of Class
org.hibernate.query.sqm.FetchClauseType
-
Packages that use FetchClauseType Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.query.criteria Support for JPA criteria queries.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.tree.select Nodes representingselectstatements in the SQM tree.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.select AST nodes representingselectstatements in a SQL tree. -
-
Uses of FetchClauseType in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type FetchClauseType Modifier and Type Method Description booleanDialect. 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 FetchClauseType Modifier and Type Method Description FetchClauseTypeJpaCriteriaQuery. getFetchClauseType()FetchClauseTypeJpaQueryPart. getFetchClauseType()FetchClauseTypeJpaSubQuery. 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 FetchClauseTypeFetchClauseType. 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 FetchClauseTypeSqmQueryPart. getFetchClauseType()FetchClauseTypeSqmSelectStatement. getFetchClauseType()FetchClauseTypeSqmSubQuery. 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)voidSqmQueryPart. 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 FetchClauseTypeAbstractSqlAstTranslator. getFetchClauseTypeForRowNumbering(QueryPart queryPartForRowNumbering)Methods in org.hibernate.sql.ast.spi with parameters of type FetchClauseType Modifier and Type Method Description protected 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 FetchClauseType Modifier and Type Method Description FetchClauseTypeQueryPart. getFetchClauseType()Methods in org.hibernate.sql.ast.tree.select with parameters of type FetchClauseType Modifier and Type Method Description voidQueryPart. setFetchClauseExpression(Expression fetchClauseExpression, FetchClauseType fetchClauseType)
-