Uses of Interface
javax.persistence.metamodel.Attribute
-
Packages that use Attribute Package Description javax.persistence Jakarta Persistence is the API for the management for persistence and object/relational mapping.javax.persistence.criteria Jakarta Persistence Criteria APIjavax.persistence.metamodel Jakarta Persistence Metamodel API -
-
Uses of Attribute in javax.persistence
Methods in javax.persistence with parameters of type Attribute Modifier and Type Method Description voidEntityGraph. addAttributeNodes(Attribute<T,?>... attribute)Add one or more attribute nodes to the entity graph.voidSubgraph. addAttributeNodes(Attribute<T,?>... attribute)Add one or more attribute nodes to the entity graph.<X> Subgraph<X>EntityGraph. addKeySubgraph(Attribute<T,X> attribute)Add a node to the graph that corresponds to a map key that is a managed type.<X> Subgraph<? extends X>EntityGraph. addKeySubgraph(Attribute<T,X> attribute, java.lang.Class<? extends X> type)Add a node to the graph that corresponds to a map key that is a managed type with inheritance.<X> Subgraph<X>Subgraph. addKeySubgraph(Attribute<T,X> attribute)Add a node to the graph that corresponds to a map key that is a managed type.<X> Subgraph<? extends X>Subgraph. addKeySubgraph(Attribute<T,X> attribute, java.lang.Class<? extends X> type)Add a node to the graph that corresponds to a map key that is a managed type with inheritance.<X> Subgraph<X>EntityGraph. addSubgraph(Attribute<T,X> attribute)Add a node to the graph that corresponds to a managed type.<X> Subgraph<? extends X>EntityGraph. addSubgraph(Attribute<T,X> attribute, java.lang.Class<? extends X> type)Add a node to the graph that corresponds to a managed type with inheritance.<X> Subgraph<X>Subgraph. addSubgraph(Attribute<T,X> attribute)Add a node to the graph that corresponds to a managed type.<X> Subgraph<? extends X>Subgraph. addSubgraph(Attribute<T,X> attribute, java.lang.Class<? extends X> type)Add a node to the graph that corresponds to a managed type with inheritance. -
Uses of Attribute in javax.persistence.criteria
Methods in javax.persistence.criteria that return Attribute Modifier and Type Method Description Attribute<? super Z,?>Fetch. getAttribute()Return the metamodel attribute corresponding to the fetch join.Attribute<? super Z,?>Join. getAttribute()Return the metamodel attribute corresponding to the join. -
Uses of Attribute in javax.persistence.metamodel
Subinterfaces of Attribute in javax.persistence.metamodel Modifier and Type Interface Description interfaceCollectionAttribute<X,E>Instances of the typeCollectionAttributerepresent persistentjava.util.Collection-valued attributes.interfaceListAttribute<X,E>Instances of the typeListAttributerepresent persistentjavax.util.List-valued attributes.interfaceMapAttribute<X,K,V>Instances of the typeMapAttributerepresent persistentjava.util.Map-valued attributes.interfacePluralAttribute<X,C,E>Instances of the typePluralAttributerepresent persistent collection-valued attributes.interfaceSetAttribute<X,E>Instances of the typeSetAttributerepresent persistentjava.util.Set-valued attributes.interfaceSingularAttribute<X,T>Instances of the typeSingularAttributerepresents persistent single-valued properties or fields.Methods in javax.persistence.metamodel that return Attribute Modifier and Type Method Description Attribute<? super X,?>ManagedType. getAttribute(java.lang.String name)Return the attribute of the managed type that corresponds to the specified name.Attribute<X,?>ManagedType. getDeclaredAttribute(java.lang.String name)Return the attribute declared by the managed type that corresponds to the specified name.Methods in javax.persistence.metamodel that return types with arguments of type Attribute Modifier and Type Method Description java.util.Set<Attribute<? super X,?>>ManagedType. getAttributes()Return the attributes of the managed type.java.util.Set<Attribute<X,?>>ManagedType. getDeclaredAttributes()Return the attributes declared by the managed type.
-