Uses of Interface
jakarta.persistence.metamodel.SetAttribute
Packages that use SetAttribute
Package
Description
Defines the Jakarta Persistence Criteria Query API.
Defines the Jakarta Persistence Metamodel API, allowing runtime
reflection on the managed types declared by a persistence unit.
-
Uses of SetAttribute in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return SetAttributeModifier and TypeMethodDescriptionSetAttribute<? super Z, E> SetJoin.getModel()Return the metamodel representation for the set attribute.Methods in jakarta.persistence.criteria with parameters of type SetAttributeModifier and TypeMethodDescriptionFrom.join(SetAttribute<? super X, Y> set) Create an inner join to the specifiedSet-valued attribute.From.join(SetAttribute<? super X, Y> set, JoinType jt) Create a join to the specifiedSet-valued attribute using the given join type. -
Uses of SetAttribute in jakarta.persistence.metamodel
Methods in jakarta.persistence.metamodel that return SetAttributeModifier and TypeMethodDescriptionSetAttribute<X, ?> ManagedType.getDeclaredSet(String name) Return the Set-valued attribute declared by the managed type that corresponds to the specified name.<E> SetAttribute<X, E> ManagedType.getDeclaredSet(String name, Class<E> elementType) Return the Set-valued attribute declared by the managed type that corresponds to the specified name and Java element type.SetAttribute<? super X, ?> Return the Set-valued attribute of the managed type that corresponds to the specified name.<E> SetAttribute<? super X, E> Return the Set-valued attribute of the managed type that corresponds to the specified name and Java element type.