Uses of Interface
javax.persistence.EntityGraph
-
Packages that use EntityGraph Package Description javax.persistence 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 EntityGraph Modifier and Type Method Description <T> EntityGraph<T>EntityManager. createEntityGraph(java.lang.Class<T> rootType)Return a mutable EntityGraph that can be used to dynamically create an EntityGraph.EntityGraph<?>EntityManager. createEntityGraph(java.lang.String graphName)Return a mutable copy of the named EntityGraph.EntityGraph<?>EntityManager. getEntityGraph(java.lang.String graphName)Return a named EntityGraph.Methods in javax.persistence that return types with arguments of type EntityGraph Modifier and Type Method Description <T> java.util.List<EntityGraph<? super T>>EntityManager. getEntityGraphs(java.lang.Class<T> entityClass)Return all named EntityGraphs that have been defined for the provided class type.Methods in javax.persistence with parameters of type EntityGraph Modifier and Type Method Description <T> voidEntityManagerFactory. addNamedEntityGraph(java.lang.String graphName, EntityGraph<T> entityGraph)Add a named copy of the EntityGraph to the EntityManagerFactory.
-