Package org.hibernate.sql.ast.spi
Interface SqlAstQueryPartProcessingState
-
- All Superinterfaces:
SqlAstProcessingState
,SqlAstQueryNodeProcessingState
- All Known Implementing Classes:
LoaderSqlAstCreationState
,SqlAstQueryPartProcessingStateImpl
public interface SqlAstQueryPartProcessingState extends SqlAstQueryNodeProcessingState
SqlAstProcessingState specialization for query parts
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryPart
getInflightQueryPart()
Get the QueryPart being processed as part of this state.-
Methods inherited from interface org.hibernate.sql.ast.spi.SqlAstProcessingState
getParentState, getSqlAstCreationState, getSqlExpressionResolver, isTopLevel
-
Methods inherited from interface org.hibernate.sql.ast.spi.SqlAstQueryNodeProcessingState
applyPredicate, getFromClause, getFromRegistrations, registerFromUsage, registerTreatedFrom
-
-
-
-
Method Detail
-
getInflightQueryPart
QueryPart getInflightQueryPart()
Get the QueryPart being processed as part of this state. It is considered in-flight as it is probably still being built.
-
-