Uses of Interface
org.hibernate.query.sqm.spi.SqmCreationContext
-
Packages that use SqmCreationContext Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.org.hibernate.query.hql.spi SPIs for HQL support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation details -
-
Uses of SqmCreationContext in org.hibernate.engine.spi
Subinterfaces of SqmCreationContext in org.hibernate.engine.spi Modifier and Type Interface Description interface
SessionFactoryImplementor
Defines the internal contract between theSessionFactory
and the internal implementation of Hibernate.Classes in org.hibernate.engine.spi that implement SqmCreationContext Modifier and Type Class Description class
SessionFactoryDelegatingImpl
Base delegating implementation of theSessionFactory
andSessionFactoryImplementor
contracts for intended for easier implementation ofSessionFactory
. -
Uses of SqmCreationContext in org.hibernate.internal
Classes in org.hibernate.internal that implement SqmCreationContext Modifier and Type Class Description class
SessionFactoryImpl
Concrete implementation of theSessionFactory
API. -
Uses of SqmCreationContext in org.hibernate.query.hql.internal
Methods in org.hibernate.query.hql.internal that return SqmCreationContext Modifier and Type Method Description SqmCreationContext
SemanticQueryBuilder. getCreationContext()
Methods in org.hibernate.query.hql.internal with parameters of type SqmCreationContext Modifier and Type Method Description static <R> SqmStatement<R>
SemanticQueryBuilder. buildSemanticModel(HqlParser.StatementContext hqlParseTree, Class<R> expectedResultType, SqmCreationOptions creationOptions, SqmCreationContext creationContext)
Main entry point into analysis of HQL/JPQL parse tree - producing a semantic model of the query.Constructors in org.hibernate.query.hql.internal with parameters of type SqmCreationContext Constructor Description SemanticQueryBuilder(Class<R> expectedResultType, SqmCreationOptions creationOptions, SqmCreationContext creationContext)
StandardHqlTranslator(SqmCreationContext sqmCreationContext, SqmCreationOptions sqmCreationOptions)
-
Uses of SqmCreationContext in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi that return SqmCreationContext Modifier and Type Method Description SqmCreationContext
SqmCreationState. getCreationContext()
Access to the context of the creation -
Uses of SqmCreationContext in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement SqmCreationContext Modifier and Type Class Description class
SqmCriteriaNodeBuilder
Acts as a JPACriteriaBuilder
by using SQM nodes as the JPA Criteria nodes
-