Package | Description |
---|---|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.jpa.spi |
Modifier and Type | Method and Description |
---|---|
<T> QueryImplementor<T> |
SessionDelegatorBaseImpl.createQuery(String jpaqlString,
Class<T> resultClass,
Selection selection,
HibernateEntityManagerImplementor.QueryOptions queryOptions) |
<T> QueryImplementor<T> |
SessionImplementor.createQuery(String jpaqlString,
Class<T> resultClass,
Selection selection,
HibernateEntityManagerImplementor.QueryOptions queryOptions)
Deprecated.
(since 5.2) - see deprecation note on super
|
Modifier and Type | Method and Description |
---|---|
<T> QueryImplementor<T> |
SessionImpl.createQuery(String jpaqlString,
Class<T> resultClass,
Selection selection,
HibernateEntityManagerImplementor.QueryOptions queryOptions) |
Modifier and Type | Method and Description |
---|---|
<T> Query<T> |
HibernateEntityManagerImplementor.createQuery(String jpaqlString,
Class<T> resultClass,
Selection selection,
HibernateEntityManagerImplementor.QueryOptions queryOptions)
Deprecated.
(since 5.2) this method form is used to construct a "compiled" representation of
a JPA Criteria query. However it assumes the old yucky implementation of "compilation" that
converted the Criteria into a HQL/JPQL string. In 6.0 that is re-written from scratch to
compile to SQM, and so this method would not be needed in 6.0
|
Copyright © 2021 JBoss by Red Hat. All rights reserved.