Uses of Interface
org.hibernate.graph.RootGraph
-
Packages that use RootGraph Package Description org.hibernate org.hibernate.graph Hibernate's (extended) support for JPA's entity graphsorg.hibernate.graph.spi org.hibernate.query -
-
Uses of RootGraph in org.hibernate
Methods in org.hibernate that return RootGraph Modifier and Type Method Description <T> RootGraph<T>Session. createEntityGraph(Class<T> rootType)RootGraph<?>Session. createEntityGraph(String graphName)RootGraph<?>Session. getEntityGraph(String graphName)Methods in org.hibernate with parameters of type RootGraph Modifier and Type Method Description default IdentifierLoadAccess<T>IdentifierLoadAccess. with(RootGraph<T> graph)IdentifierLoadAccess<T>IdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)default MultiIdentifierLoadAccess<T>MultiIdentifierLoadAccess. with(RootGraph<T> graph)MultiIdentifierLoadAccess<T>MultiIdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic) -
Uses of RootGraph in org.hibernate.graph
Methods in org.hibernate.graph that return RootGraph Modifier and Type Method Description RootGraph<J>Graph. makeRootGraph(String name, boolean mutable)Create a named (if passed `name` != null) root Graph.RootGraph<J>RootGraph. makeRootGraph(String name, boolean mutable)static <T> RootGraph<T>GraphParser. parse(Class<T> rootType, CharSequence graphText, EntityManager entityManager)Creates a root graph based on the passed `rootType` and parses `graphText` into the generated root graph -
Uses of RootGraph in org.hibernate.graph.spi
Subinterfaces of RootGraph in org.hibernate.graph.spi Modifier and Type Interface Description interfaceRootGraphImplementor<J>Integration version of the RootGraph contract -
Uses of RootGraph in org.hibernate.query
Methods in org.hibernate.query with parameters of type RootGraph Modifier and Type Method Description default Query<R>Query. applyFetchGraph(RootGraph graph)Apply the given graph using fetch semanticsQuery<R>Query. applyGraph(RootGraph graph, GraphSemantic semantic)Apply the given graph using the given semanticdefault Query<R>Query. applyLoadGraph(RootGraph graph)Apply the given graph using load semantics
-