Uses of Interface
jakarta.persistence.AttributeNode
Packages that use AttributeNode
Package
Description
Defines the core APIs for the management for persistence and
object/relational mapping.
-
Uses of AttributeNode in jakarta.persistence
Methods in jakarta.persistence that return AttributeNodeModifier and TypeMethodDescription<Y> AttributeNode<Y> Graph.addAttributeNode(Attribute<? super T, Y> attribute) Get an existing attribute node for the given attribute, or add a new attribute node if there is no existing node, cancelling the effect of any prior removal.<Y> AttributeNode<Y> Graph.addAttributeNode(String attributeName) Get an existing attribute node for the attribute with the given name, or add a new attribute node if there is no existing node, cancelling the effect of any prior removal.AttributeNode.addOption(FetchOption option) Specify an option controlling how this node is fetched, overwriting any existing option of the same type.<Y> AttributeNode<Y> Graph.getAttributeNode(Attribute<? super T, Y> attribute) Get an existing attribute node for the given attribute.<Y> AttributeNode<Y> Graph.getAttributeNode(String attributeName) Get an existing attribute node for the attribute with the given name.Methods in jakarta.persistence that return types with arguments of type AttributeNodeModifier and TypeMethodDescriptionList<AttributeNode<?>> Graph.getAttributeNodes()Return the attribute nodes representing the persistent attributes of this managed type that were explicitly included in (added to) or excluded from (removed from) the graph.