Package org.hibernate.sql.ast.spi
Interface SqlAstQueryPartProcessingState
-
- All Superinterfaces:
SqlAstProcessingState
- All Known Implementing Classes:
LoaderSqlAstCreationState
,SqlAstQueryPartProcessingStateImpl
public interface SqlAstQueryPartProcessingState extends SqlAstProcessingState
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.Map<TableGroup,Map<EntityDomainType<?>,Boolean>>
getTreatRegistrations()
The treat registrations.void
registerTreat(TableGroup tableGroup, EntityDomainType<?> treatType)
void
registerTreatUsage(TableGroup tableGroup, EntityDomainType<?> treatType)
-
Methods inherited from interface org.hibernate.sql.ast.spi.SqlAstProcessingState
getParentState, getSqlAstCreationState, getSqlExpressionResolver, isTopLevel
-
-
-
-
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.
-
registerTreat
void registerTreat(TableGroup tableGroup, EntityDomainType<?> treatType)
-
registerTreatUsage
void registerTreatUsage(TableGroup tableGroup, EntityDomainType<?> treatType)
-
getTreatRegistrations
Map<TableGroup,Map<EntityDomainType<?>,Boolean>> getTreatRegistrations()
The treat registrations. The boolean indicates whether the treat is used in the query part.
-
-