Uses of Interface
javax.persistence.EntityGraph
Packages that use EntityGraph
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
-
Uses of EntityGraph in javax.persistence
Methods in javax.persistence that return EntityGraphModifier and TypeMethodDescription<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.Methods in javax.persistence that return types with arguments of type EntityGraphModifier and TypeMethodDescription<T> List
<EntityGraph<? super T>> EntityManager.getEntityGraphs
(Class<T> entityClass) Return all named EntityGraphs that have been defined for the provided class type.Methods in javax.persistence with parameters of type EntityGraphModifier and TypeMethodDescription<T> void
EntityManagerFactory.addNamedEntityGraph
(String graphName, EntityGraph<T> entityGraph) Add a named copy of the EntityGraph to the EntityManagerFactory.