Uses of Interface
jakarta.persistence.metamodel.CollectionAttribute
Packages that use CollectionAttribute
Package
Description
Jakarta Persistence Criteria API
Jakarta Persistence Metamodel API
Defines the runtime domain metamodel, which describes the Java aspect of
the application's domain model parts (entities, attributes).
Implementation of the SPI for the runtime domain metamodel.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Nodes representing path expressions in the SQM tree.
Nodes representing root entities and joins in the SQM tree.
-
Uses of CollectionAttribute in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return CollectionAttributeModifier and TypeMethodDescriptionCollectionAttribute<? super Z,E> CollectionJoin.getModel()Return the metamodel representation for the collection attribute.Methods in jakarta.persistence.criteria with parameters of type CollectionAttributeModifier and TypeMethodDescription<Y> CollectionJoin<X,Y> From.join(CollectionAttribute<? super X, Y> collection) Create an inner join to the specified Collection-valued attribute.<Y> CollectionJoin<X,Y> From.join(CollectionAttribute<? super X, Y> collection, JoinType jt) Create a join to the specified Collection-valued attribute using the given join type. -
Uses of CollectionAttribute in jakarta.persistence.metamodel
Methods in jakarta.persistence.metamodel that return CollectionAttributeModifier and TypeMethodDescriptionCollectionAttribute<? super X,?> ManagedType.getCollection(String name) Return the Collection-valued attribute of the managed type that corresponds to the specified name.<E> CollectionAttribute<? super X,E> ManagedType.getCollection(String name, Class<E> elementType) Return the Collection-valued attribute of the managed type that corresponds to the specified name and Java element type.ManagedType.getDeclaredCollection(String name) Return the Collection-valued attribute declared by the managed type that corresponds to the specified name.<E> CollectionAttribute<X,E> ManagedType.getDeclaredCollection(String name, Class<E> elementType) Return the Collection-valued attribute declared by the managed type that corresponds to the specified name and Java element type. -
Uses of CollectionAttribute in org.hibernate.metamodel.model.domain
Subinterfaces of CollectionAttribute in org.hibernate.metamodel.model.domainModifier and TypeInterfaceDescriptioninterfaceHibernate extension to the JPACollectionAttributedescriptorMethods in org.hibernate.metamodel.model.domain that return CollectionAttributeModifier and TypeMethodDescriptionAbstractManagedType.getDeclaredCollection(String name) <E> CollectionAttribute<J,E> AbstractManagedType.getDeclaredCollection(String name, Class<E> elementType) -
Uses of CollectionAttribute in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement CollectionAttribute -
Uses of CollectionAttribute in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria with parameters of type CollectionAttributeModifier and TypeMethodDescription<Y> JpaCollectionJoin<T,Y> JpaFrom.join(CollectionAttribute<? super T, Y> collection) <Y> JpaCollectionJoin<T,Y> JpaFrom.join(CollectionAttribute<? super T, Y> collection, JoinType jt) -
Uses of CollectionAttribute in org.hibernate.query.sqm.tree.domain
Methods in org.hibernate.query.sqm.tree.domain that return CollectionAttributeModifier and TypeMethodDescriptionCollectionAttribute<? super T,?> SqmPolymorphicRootDescriptor.getCollection(String name) <E> CollectionAttribute<? super T,E> SqmPolymorphicRootDescriptor.getCollection(String name, Class<E> elementType) SqmPolymorphicRootDescriptor.getDeclaredCollection(String name) <E> CollectionAttribute<T,E> SqmPolymorphicRootDescriptor.getDeclaredCollection(String name, Class<E> elementType) Methods in org.hibernate.query.sqm.tree.domain with parameters of type CollectionAttributeModifier and TypeMethodDescription<A> SqmBagJoin<T,A> AbstractSqmFrom.join(CollectionAttribute<? super T, A> attribute) <E> SqmBagJoin<T,E> AbstractSqmFrom.join(CollectionAttribute<? super T, E> attribute, JoinType jt) -
Uses of CollectionAttribute in org.hibernate.query.sqm.tree.from
Methods in org.hibernate.query.sqm.tree.from with parameters of type CollectionAttributeModifier and TypeMethodDescription<E> SqmBagJoin<T,E> SqmFrom.join(CollectionAttribute<? super T, E> attribute) <E> SqmBagJoin<T,E> SqmFrom.join(CollectionAttribute<? super T, E> attribute, JoinType jt)