Uses of Interface
jakarta.persistence.metamodel.ListAttribute
-
Packages that use ListAttribute Package Description jakarta.persistence.criteria Jakarta Persistence Criteria APIjakarta.persistence.metamodel Jakarta Persistence Metamodel API -
-
Uses of ListAttribute in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return ListAttribute Modifier and Type Method Description ListAttribute<? super Z,E>
ListJoin. getModel()
Return the metamodel representation for the list attribute.Methods in jakarta.persistence.criteria with parameters of type ListAttribute Modifier and Type Method Description <Y> ListJoin<X,Y>
From. join(ListAttribute<? super X,Y> list)
Create an inner join to the specified List-valued attribute.<Y> ListJoin<X,Y>
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 ListAttribute Modifier and Type Method Description ListAttribute<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,?>
ManagedType. getList(String name)
Return the List-valued attribute of the managed type that corresponds to the specified name.<E> ListAttribute<? super X,E>
ManagedType. getList(String name, Class<E> elementType)
Return the List-valued attribute of the managed type that corresponds to the specified name and Java element type.
-