Uses of Interface
org.hibernate.query.spi.QueryPlan
-
Packages that use QueryPlan Package Description 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 QueryPlan in org.hibernate.query.spi
Subinterfaces of QueryPlan in org.hibernate.query.spi Modifier and Type Interface Description interface
NonSelectQueryPlan
interface
SelectQueryPlan<R>
General contract for performing execution of a query returning results. -
Uses of QueryPlan in org.hibernate.query.sql.internal
Classes in org.hibernate.query.sql.internal that implement QueryPlan Modifier and Type Class Description class
NativeNonSelectQueryPlanImpl
class
NativeSelectQueryPlanImpl<R>
-
Uses of QueryPlan in org.hibernate.query.sql.spi
Subinterfaces of QueryPlan in org.hibernate.query.sql.spi Modifier and Type Interface Description interface
NativeNonSelectQueryPlan
interface
NativeQueryPlan
Specialization ofQueryPlan
forNativeQuery
plansinterface
NativeSelectQueryPlan<T>
-
Uses of QueryPlan in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement QueryPlan Modifier and Type Class Description class
AggregatedNonSelectQueryPlanImpl
class
AggregatedSelectQueryPlanImpl<R>
class
ConcreteSqmSelectQueryPlan<R>
Standard Hibernate implementation of SelectQueryPlan for SQM-backedQuery
implementations, which means HQL/JPQL orCriteriaQuery
class
MultiTableDeleteQueryPlan
class
MultiTableInsertQueryPlan
class
MultiTableUpdateQueryPlan
class
SimpleDeleteQueryPlan
class
SimpleInsertQueryPlan
class
SimpleUpdateQueryPlan
-