Uses of Interface
jakarta.persistence.metamodel.ListAttribute
Packages that use ListAttribute
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 ListAttribute in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return ListAttributeModifier and TypeMethodDescriptionListAttribute<? super Z,E> ListJoin.getModel()Return the metamodel representation for the list attribute.Methods in jakarta.persistence.criteria with parameters of type ListAttributeModifier and TypeMethodDescriptionFrom.join(ListAttribute<? super X, Y> list) Create an inner join to the specified List-valued attribute.From.join(ListAttribute<? super X, Y> list, JoinType jt) Create a join to the specified List-valued attribute using the given join type. -
Uses of ListAttribute in jakarta.persistence.metamodel
Methods in jakarta.persistence.metamodel that return ListAttributeModifier and TypeMethodDescriptionListAttribute<X,?> ManagedType.getDeclaredList(String name) Return the List-valued attribute declared by the managed type that corresponds to the specified name.<E> ListAttribute<X,E> ManagedType.getDeclaredList(String name, Class<E> elementType) Return the List-valued attribute declared by the managed type that corresponds to the specified name and Java element type.ListAttribute<? super X,?> Return the List-valued attribute of the managed type that corresponds to the specified name.<E> ListAttribute<? super X,E> Return the List-valued attribute of the managed type that corresponds to the specified name and Java element type. -
Uses of ListAttribute in org.hibernate.metamodel.model.domain
Subinterfaces of ListAttribute in org.hibernate.metamodel.model.domainModifier and TypeInterfaceDescriptioninterfaceHibernate extension to the JPAListAttributedescriptorMethods in org.hibernate.metamodel.model.domain that return ListAttributeModifier and TypeMethodDescription<E> ListAttribute<J,E> AbstractManagedType.getDeclaredList(String name, Class<E> elementType) <E> ListAttribute<? super J,E> -
Uses of ListAttribute in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement ListAttribute -
Uses of ListAttribute in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria with parameters of type ListAttributeModifier and TypeMethodDescription<Y> JpaListJoin<T,Y> JpaFrom.join(ListAttribute<? super T, Y> list) <Y> JpaListJoin<T,Y> JpaFrom.join(ListAttribute<? super T, Y> list, JoinType jt) -
Uses of ListAttribute in org.hibernate.query.sqm.tree.domain
Methods in org.hibernate.query.sqm.tree.domain that return ListAttributeModifier and TypeMethodDescriptionListAttribute<T,?> SqmPolymorphicRootDescriptor.getDeclaredList(String name) <E> ListAttribute<T,E> SqmPolymorphicRootDescriptor.getDeclaredList(String name, Class<E> elementType) ListAttribute<? super T,?> <E> ListAttribute<? super T,E> Methods in org.hibernate.query.sqm.tree.domain with parameters of type ListAttributeModifier and TypeMethodDescription<E> SqmListJoin<T,E> AbstractSqmFrom.join(ListAttribute<? super T, E> attribute) <E> SqmListJoin<T,E> AbstractSqmFrom.join(ListAttribute<? super T, E> attribute, JoinType jt) -
Uses of ListAttribute in org.hibernate.query.sqm.tree.from
Methods in org.hibernate.query.sqm.tree.from with parameters of type ListAttributeModifier and TypeMethodDescription<E> SqmListJoin<T,E> SqmFrom.join(ListAttribute<? super T, E> list) <E> SqmListJoin<T,E> SqmFrom.join(ListAttribute<? super T, E> list, JoinType jt)