Package | Description |
---|---|
javax.persistence | |
org.hibernate.engine.query.spi |
Defines support for query plans and stored metadata about queries
|
org.hibernate.engine.spi | |
org.hibernate.jpa |
Defines Hibernate implementation of Java Persistence specification.
|
org.hibernate.jpa.graph.internal | |
org.hibernate.jpa.internal |
Modifier and Type | Method and Description |
---|---|
<T> EntityGraph<T> |
EntityManager.createEntityGraph(Class<T> rootType)
Return a mutable EntityGraph that can be used to dynamically create an EntityGraph.
|
EntityGraph<?> |
EntityManager.createEntityGraph(String graphName)
Return a mutable copy of the named EntityGraph.
|
EntityGraph<?> |
EntityManager.getEntityGraph(String graphName)
Return a named EntityGraph.
|
Modifier and Type | Method and Description |
---|---|
<T> List<EntityGraph<? super T>> |
EntityManager.getEntityGraphs(Class<T> entityClass)
Return all named EntityGraphs that have been defined for the provided class type.
|
Modifier and Type | Method and Description |
---|---|
<T> void |
EntityManagerFactory.addNamedEntityGraph(String graphName,
EntityGraph<T> entityGraph)
Add a named copy of the EntityGraph to the
EntityManagerFactory.
|
Constructor and Description |
---|
EntityGraphQueryHint(EntityGraph<?> originEntityGraph) |
Modifier and Type | Method and Description |
---|---|
EntityGraph |
LoadQueryInfluencers.getFetchGraph() |
EntityGraph |
LoadQueryInfluencers.getLoadGraph() |
Modifier and Type | Method and Description |
---|---|
void |
LoadQueryInfluencers.setFetchGraph(EntityGraph fetchGraph) |
void |
LoadQueryInfluencers.setLoadGraph(EntityGraph loadGraph) |
Modifier and Type | Method and Description |
---|---|
<T> List<EntityGraph<? super T>> |
HibernateEntityManagerFactory.findEntityGraphsByType(Class<T> entityClass)
Find all
EntityGraph s associated with a given entity type. |
Modifier and Type | Class and Description |
---|---|
class |
EntityGraphImpl<T>
The Hibernate implementation of the JPA EntityGraph contract.
|
Modifier and Type | Method and Description |
---|---|
<T> EntityGraph<T> |
EntityManagerImpl.createEntityGraph(Class<T> rootType) |
EntityGraph<?> |
EntityManagerImpl.createEntityGraph(String graphName) |
EntityGraph<?> |
EntityManagerImpl.getEntityGraph(String graphName) |
Modifier and Type | Method and Description |
---|---|
<T> List<EntityGraph<? super T>> |
EntityManagerFactoryImpl.findEntityGraphsByType(Class<T> entityClass) |
<T> List<EntityGraph<? super T>> |
EntityManagerImpl.getEntityGraphs(Class<T> entityClass) |
Modifier and Type | Method and Description |
---|---|
<T> void |
EntityManagerFactoryImpl.addNamedEntityGraph(String graphName,
EntityGraph<T> entityGraph) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.