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 This package defines an internal SPI abstracting over implementations of the APIs defined inorg.hibernate.graph
. -
-
Uses of Graph in org.hibernate.graph
Subinterfaces of Graph in org.hibernate.graph Modifier and Type Interface Description interface
RootGraph<J>
Extends the JPA-definedEntityGraph
with additional operations.interface
SubGraph<J>
Extends the JPA-definedSubgraph
with additional operations.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>
Implementation of the JPA-definedEntityGraph
interface.class
SubGraphImpl<J>
Implementation of the JPA-definedSubgraph
interface. -
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 theGraph
contractinterface
RootGraphImplementor<J>
Integration version of theRootGraph
contract.interface
SubGraphImplementor<J>
Integration version of theSubGraph
contract.Methods in org.hibernate.graph.spi with parameters of type Graph Modifier and Type Method Description static boolean
GraphHelper. appliesTo(Graph<?> graph, ManagedDomainType<?> managedType)
-