Uses of Interface
org.hibernate.query.spi.QueryInterpretationCache.Key
-
Packages that use QueryInterpretationCache.Key Package Description org.hibernate.query.internal org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation details -
-
Uses of QueryInterpretationCache.Key in org.hibernate.query.internal
Methods in org.hibernate.query.internal with parameters of type QueryInterpretationCache.Key Modifier and Type Method Description void
QueryInterpretationCacheDisabledImpl. cacheNonSelectQueryPlan(QueryInterpretationCache.Key key, NonSelectQueryPlan plan)
void
QueryInterpretationCacheStandardImpl. cacheNonSelectQueryPlan(QueryInterpretationCache.Key key, NonSelectQueryPlan plan)
NonSelectQueryPlan
QueryInterpretationCacheDisabledImpl. getNonSelectQueryPlan(QueryInterpretationCache.Key key)
NonSelectQueryPlan
QueryInterpretationCacheStandardImpl. getNonSelectQueryPlan(QueryInterpretationCache.Key key)
<R> SelectQueryPlan<R>
QueryInterpretationCacheDisabledImpl. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)
<R> SelectQueryPlan<R>
QueryInterpretationCacheStandardImpl. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)
-
Uses of QueryInterpretationCache.Key in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return QueryInterpretationCache.Key Modifier and Type Method Description default QueryInterpretationCache.Key
QueryInterpretationCache.Key. prepareForStore()
The possibility for a cache key to do defensive copying in case it has mutable state.Methods in org.hibernate.query.spi with parameters of type QueryInterpretationCache.Key Modifier and Type Method Description void
QueryInterpretationCache. cacheNonSelectQueryPlan(QueryInterpretationCache.Key key, NonSelectQueryPlan plan)
NonSelectQueryPlan
QueryInterpretationCache. getNonSelectQueryPlan(QueryInterpretationCache.Key key)
<R> SelectQueryPlan<R>
QueryInterpretationCache. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)
-
Uses of QueryInterpretationCache.Key in org.hibernate.query.sql.spi
Classes in org.hibernate.query.sql.spi that implement QueryInterpretationCache.Key Modifier and Type Class Description class
NonSelectInterpretationsKey
QueryInterpretations key for non-select NativeQuery instancesclass
SelectInterpretationsKey
Methods in org.hibernate.query.sql.spi that return QueryInterpretationCache.Key Modifier and Type Method Description QueryInterpretationCache.Key
NonSelectInterpretationsKey. prepareForStore()
QueryInterpretationCache.Key
SelectInterpretationsKey. prepareForStore()
-
Uses of QueryInterpretationCache.Key in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement QueryInterpretationCache.Key Modifier and Type Class Description class
SqmInterpretationsKey
Methods in org.hibernate.query.sqm.internal that return QueryInterpretationCache.Key Modifier and Type Method Description static QueryInterpretationCache.Key
SqmInterpretationsKey. generateNonSelectKey(SqmInterpretationsKey.InterpretationsKeySource keyDetails)
QueryInterpretationCache.Key
SqmInterpretationsKey. prepareForStore()
-