Package org.hibernate.graph
Implements and extends the JPA-defined entity graph API.
- API Note:
- This entire package, including its subpackages, is considered incubating.
-
Interface Summary Interface Description AttributeNode<J> Extends the JPA-definedAttributeNode
with additional operations.Graph<J> A container forAttributeNode
references.GraphNode<J> Common operations ofAttributeNode
andGraph
.RootGraph<J> Extends the JPA-definedEntityGraph
with additional operations.SubGraph<J> Extends the JPA-definedSubgraph
with additional operations. -
Class Summary Class Description EntityGraphs A collection ofEntityGraph
utilities.GraphParser Parser for string representations of JPAEntityGraph
(RootGraph
) andSubgraph
(SubGraph
), using a simple syntax defined by the `graph.g` Antlr grammar. -
Enum Summary Enum Description GraphSemantic -
Exception Summary Exception Description CannotBecomeEntityGraphException Indicates an illegal attempt to make aGraph
become anEntityGraph
viaGraph.makeRootGraph(String, boolean)
.CannotContainSubGraphException Indicates an attempt was made to add a (key)? sub-graph to an attribute type that does not support (key)? sub-graphs.InvalidGraphException Thrown byGraphParser
to indicate textual entity graph representation parsing errors.