Uses of Interface
org.hibernate.sql.ast.spi.SqlAstProcessingState
-
Packages that use SqlAstProcessingState Package Description org.hibernate.loader.ast.internal org.hibernate.query.results Support for defining result set mappings used inNativeQuery
,ProcedureCall
, andStoredProcedureQuery
.org.hibernate.query.sqm.mutation.internal org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.sql.internal org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST. -
-
Uses of SqlAstProcessingState in org.hibernate.loader.ast.internal
Classes in org.hibernate.loader.ast.internal that implement SqlAstProcessingState Modifier and Type Class Description class
LoaderSqlAstCreationState
Helper used when generating the database-snapshot select queryMethods in org.hibernate.loader.ast.internal that return SqlAstProcessingState Modifier and Type Method Description SqlAstProcessingState
LoaderSqlAstCreationState. getCurrentProcessingState()
SqlAstProcessingState
LoaderSqlAstCreationState. getParentState()
-
Uses of SqlAstProcessingState in org.hibernate.query.results
Classes in org.hibernate.query.results that implement SqlAstProcessingState Modifier and Type Class Description class
DomainResultCreationStateImpl
Methods in org.hibernate.query.results that return SqlAstProcessingState Modifier and Type Method Description SqlAstProcessingState
DomainResultCreationStateImpl. getParentState()
Method parameters in org.hibernate.query.results with type arguments of type SqlAstProcessingState Modifier and Type Method Description Expression
DomainResultCreationStateImpl. resolveSqlExpression(SqlExpressionResolver.ColumnReferenceKey key, Function<SqlAstProcessingState,Expression> creator)
-
Uses of SqlAstProcessingState in org.hibernate.query.sqm.mutation.internal
Methods in org.hibernate.query.sqm.mutation.internal that return types with arguments of type SqlAstProcessingState Modifier and Type Method Description Stack<SqlAstProcessingState>
MultiTableSqmMutationConverter. getProcessingStateStack()
-
Uses of SqlAstProcessingState in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return SqlAstProcessingState Modifier and Type Method Description SqlAstProcessingState
BaseSqmToSqlAstConverter. getCurrentProcessingState()
SqlAstProcessingState
FakeSqmToSqlAstConverter. getCurrentProcessingState()
Methods in org.hibernate.query.sqm.sql that return types with arguments of type SqlAstProcessingState Modifier and Type Method Description protected Stack<SqlAstProcessingState>
BaseSqmToSqlAstConverter. getProcessingStateStack()
Methods in org.hibernate.query.sqm.sql with parameters of type SqlAstProcessingState Modifier and Type Method Description protected void
BaseSqmToSqlAstConverter. pushProcessingState(SqlAstProcessingState processingState)
protected void
BaseSqmToSqlAstConverter. pushProcessingState(SqlAstProcessingState processingState, FromClauseIndex fromClauseIndex)
Method parameters in org.hibernate.query.sqm.sql with type arguments of type SqlAstProcessingState Modifier and Type Method Description Expression
BaseSqmToSqlAstConverter.DelegatingSqmAliasedNodeCollector. resolveSqlExpression(SqlExpressionResolver.ColumnReferenceKey key, Function<SqlAstProcessingState,Expression> creator)
Expression
BaseSqmToSqlAstConverter.SqmAliasedNodePositionTracker. resolveSqlExpression(SqlExpressionResolver.ColumnReferenceKey key, Function<SqlAstProcessingState,Expression> creator)
-
Uses of SqlAstProcessingState in org.hibernate.query.sqm.sql.internal
Classes in org.hibernate.query.sqm.sql.internal that implement SqlAstProcessingState Modifier and Type Class Description class
SqlAstProcessingStateImpl
Implementation of ProcessingState used on its own as the impl for DML statements and as the base for QuerySpec stateclass
SqlAstQueryPartProcessingStateImpl
Methods in org.hibernate.query.sqm.sql.internal that return SqlAstProcessingState Modifier and Type Method Description SqlAstProcessingState
SqlAstProcessingStateImpl. getParentState()
Method parameters in org.hibernate.query.sqm.sql.internal with type arguments of type SqlAstProcessingState Modifier and Type Method Description Expression
SqlAstProcessingStateImpl. resolveSqlExpression(SqlExpressionResolver.ColumnReferenceKey key, Function<SqlAstProcessingState,Expression> creator)
Constructors in org.hibernate.query.sqm.sql.internal with parameters of type SqlAstProcessingState Constructor Description SqlAstProcessingStateImpl(SqlAstProcessingState parentState, SqlAstCreationState creationState, Function<SqlExpressionResolver,SqlExpressionResolver> expressionResolverDecorator, Supplier<Clause> currentClauseAccess)
SqlAstProcessingStateImpl(SqlAstProcessingState parentState, SqlAstCreationState creationState, Supplier<Clause> currentClauseAccess)
SqlAstQueryPartProcessingStateImpl(QueryPart queryPart, SqlAstProcessingState parent, SqlAstCreationState creationState, Function<SqlExpressionResolver,SqlExpressionResolver> expressionResolverDecorator, Supplier<Clause> currentClauseAccess, boolean deduplicateSelectionItems)
SqlAstQueryPartProcessingStateImpl(QueryPart queryPart, SqlAstProcessingState parent, SqlAstCreationState creationState, Supplier<Clause> currentClauseAccess, boolean deduplicateSelectionItems)
-
Uses of SqlAstProcessingState in org.hibernate.sql.ast.spi
Subinterfaces of SqlAstProcessingState in org.hibernate.sql.ast.spi Modifier and Type Interface Description interface
SqlAstQueryPartProcessingState
SqlAstProcessingState specialization for query partsMethods in org.hibernate.sql.ast.spi that return SqlAstProcessingState Modifier and Type Method Description SqlAstProcessingState
SqlAstCreationState. getCurrentProcessingState()
SqlAstProcessingState
SqlAstProcessingState. getParentState()
Method parameters in org.hibernate.sql.ast.spi with type arguments of type SqlAstProcessingState Modifier and Type Method Description Expression
SqlExpressionResolver. resolveSqlExpression(SqlExpressionResolver.ColumnReferenceKey key, Function<SqlAstProcessingState,Expression> creator)
Given a qualifier + a qualifiableSqlExpressible
, resolve the (Sql)Expression reference.
-