Uses of Interface
org.hibernate.query.spi.SelectQueryPlan
-
Packages that use SelectQueryPlan 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.internal Implementation of the SPIs for native SQL query support.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 SelectQueryPlan in org.hibernate.query.internal
Methods in org.hibernate.query.internal that return SelectQueryPlan Modifier and Type Method Description <R> SelectQueryPlan<R>QueryInterpretationCacheDisabledImpl. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)<R> SelectQueryPlan<R>QueryInterpretationCacheStandardImpl. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)Method parameters in org.hibernate.query.internal with type arguments of type SelectQueryPlan Modifier and Type Method Description <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 SelectQueryPlan in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return SelectQueryPlan Modifier and Type Method Description SelectQueryPlanQueryPlanCache. getSelectQueryPlan(QueryPlanCache.Key key)<R> SelectQueryPlan<R>QueryInterpretationCache. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator)Methods in org.hibernate.query.spi with parameters of type SelectQueryPlan Modifier and Type Method Description voidQueryPlanCache. cacheSelectQueryPlan(QueryPlanCache.Key key, SelectQueryPlan plan)Method parameters in org.hibernate.query.spi with type arguments of type SelectQueryPlan Modifier and Type Method Description <R> SelectQueryPlan<R>QueryInterpretationCache. resolveSelectQueryPlan(QueryInterpretationCache.Key key, Supplier<SelectQueryPlan<R>> creator) -
Uses of SelectQueryPlan in org.hibernate.query.sql.internal
Classes in org.hibernate.query.sql.internal that implement SelectQueryPlan Modifier and Type Class Description classNativeSelectQueryPlanImpl<R>Methods in org.hibernate.query.sql.internal that return SelectQueryPlan Modifier and Type Method Description protected SelectQueryPlan<R>NativeQueryImpl. resolveSelectQueryPlan() -
Uses of SelectQueryPlan in org.hibernate.query.sql.spi
Subinterfaces of SelectQueryPlan in org.hibernate.query.sql.spi Modifier and Type Interface Description interfaceNativeSelectQueryPlan<T> -
Uses of SelectQueryPlan in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement SelectQueryPlan Modifier and Type Class Description classAggregatedSelectQueryPlanImpl<R>classConcreteSqmSelectQueryPlan<R>Standard Hibernate implementation of SelectQueryPlan for SQM-backedQueryimplementations, which means HQL/JPQL orCriteriaQueryConstructors in org.hibernate.query.sqm.internal with parameters of type SelectQueryPlan Constructor Description AggregatedSelectQueryPlanImpl(SelectQueryPlan<R>[] aggregatedQueryPlans)
-