Uses of Interface
jakarta.persistence.EntityGraph
-
Packages that use EntityGraph Package Description jakarta.persistence Jakarta Persistence is the API for the management for persistence and object/relational mapping.org.hibernate.search.mapper.orm.loading.impl org.hibernate.search.mapper.orm.search.loading.dsl -
-
Uses of EntityGraph in jakarta.persistence
Methods in jakarta.persistence that return EntityGraph Modifier and Type Method 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.Methods in jakarta.persistence that return types with arguments of type EntityGraph Modifier and Type Method Description <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 jakarta.persistence with parameters of type EntityGraph Modifier and Type Method Description <T> voidEntityManagerFactory. addNamedEntityGraph(String graphName, EntityGraph<T> entityGraph)Add a named copy of the EntityGraph to the EntityManagerFactory. -
Uses of EntityGraph in org.hibernate.search.mapper.orm.loading.impl
Methods in org.hibernate.search.mapper.orm.loading.impl with parameters of type EntityGraph Modifier and Type Method Description SearchLoadingOptionsStepHibernateOrmSelectionLoadingContext.Builder. graph(EntityGraph<?> graph, org.hibernate.graph.GraphSemantic semantic) -
Uses of EntityGraph in org.hibernate.search.mapper.orm.search.loading.dsl
Methods in org.hibernate.search.mapper.orm.search.loading.dsl with parameters of type EntityGraph Modifier and Type Method Description SearchLoadingOptionsStepSearchLoadingOptionsStep. graph(EntityGraph<?> graph, org.hibernate.graph.GraphSemantic semantic)Customize fetching/loading of entity attributes and associations according to the given entity graph, with the given semantic.
-