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 -
-
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 an AttributeNode (with no associated SubGraphNodes) to this container by attribute name<AJ> AttributeNode<AJ>Graph. addAttributeNode(PersistentAttribute<? extends J,AJ> attribute)Add an AttributeNode (with no associated SubGraphNode) 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 containerMethods 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 containerList<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>Hibernate implementation of the JPA AttributeNode contractMethods 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 the AttributeNode contractMethods in org.hibernate.graph.spi that return types with arguments of type AttributeNode Modifier and Type Method Description default List<AttributeNode<?>>GraphImplementor. getAttributeNodeList()
-