Uses of Interface
org.hibernate.graph.AttributeNode
-
Packages that use AttributeNode 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 AttributeNode in org.hibernate.graph
Methods in org.hibernate.graph that return AttributeNode Modifier and Type Method Description <AJ> AttributeNode<AJ>Graph. addAttributeNode(String attributeName)Add anAttributeNode(with no associatedSubGraph) to this container by attribute name.<AJ> AttributeNode<AJ>Graph. addAttributeNode(PersistentAttribute<? extends J,AJ> attribute)Add anAttributeNode(with no associatedSubGraph) to this container by attribute reference.<AJ> AttributeNode<AJ>Graph. findAttributeNode(String attributeName)Find an already existing AttributeNode by attributeName within this container<AJ> AttributeNode<AJ>Graph. findAttributeNode(PersistentAttribute<? extends J,AJ> attribute)Find an already existing AttributeNode by corresponding attribute reference, within this container.Methods in org.hibernate.graph that return types with arguments of type AttributeNode Modifier and Type Method Description List<AttributeNode<?>>Graph. getAttributeNodeList()Get a list of all existing AttributeNodes within this container.List<AttributeNode<?>>Graph. getGraphAttributeNodes()Ultimately only needed for implementingEntityGraph.getAttributeNodes()andSubgraph.getAttributeNodes() -
Uses of AttributeNode in org.hibernate.graph.internal
Classes in org.hibernate.graph.internal that implement AttributeNode Modifier and Type Class Description classAttributeNodeImpl<J>Implementation ofAttributeNode.Methods in org.hibernate.graph.internal that return types with arguments of type AttributeNode Modifier and Type Method Description List<AttributeNode<?>>AbstractGraph. getGraphAttributeNodes() -
Uses of AttributeNode in org.hibernate.graph.spi
Subinterfaces of AttributeNode in org.hibernate.graph.spi Modifier and Type Interface Description interfaceAttributeNodeImplementor<J>Integration version of theAttributeNodecontractMethods in org.hibernate.graph.spi that return types with arguments of type AttributeNode Modifier and Type Method Description default List<AttributeNode<?>>GraphImplementor. getAttributeNodeList()
-