Uses of Interface
org.hibernate.graph.Graph
-
Packages that use Graph Package Description org.hibernate.graph Implements and extends the JPA-defined entity graph API.org.hibernate.graph.internal org.hibernate.graph.spi -
-
Uses of Graph in org.hibernate.graph
Subinterfaces of Graph in org.hibernate.graph Modifier and Type Interface Description interface
RootGraph<J>
Hibernate extension to the JPAEntityGraph
contract.interface
SubGraph<J>
Hibernate extension to the JPA entity-graph Subgraph contract.Methods in org.hibernate.graph that return Graph Modifier and Type Method Description Graph<J>
Graph. makeCopy(boolean mutable)
Methods in org.hibernate.graph with parameters of type Graph Modifier and Type Method Description static <T> EntityGraph<T>
EntityGraphs. merge(Session session, Class<T> rootType, Graph<T>... graphs)
static <T> void
GraphParser. parseInto(Graph<T> graph, CharSequence graphText, EntityManager entityManager)
Parses the textual graph representation into the specified graph.static <T> void
GraphParser. parseInto(Graph<T> graph, CharSequence graphText, EntityManagerFactory entityManagerFactory)
Parses the textual graph representation into the specified graph. -
Uses of Graph in org.hibernate.graph.internal
Classes in org.hibernate.graph.internal that implement Graph Modifier and Type Class Description class
AbstractGraph<J>
class
RootGraphImpl<J>
The Hibernate implementation of the JPA EntityGraph contract.class
SubGraphImpl<J>
-
Uses of Graph in org.hibernate.graph.spi
Subinterfaces of Graph in org.hibernate.graph.spi Modifier and Type Interface Description interface
GraphImplementor<J>
Integration version of the Graph contractinterface
RootGraphImplementor<J>
Integration version of the RootGraph contractinterface
SubGraphImplementor<J>
Integration version of the SubGraph contract
-