Class CollectionAttributeImpl<X,V>
- java.lang.Object
-
- org.eclipse.persistence.internal.jpa.metamodel.AttributeImpl<X,C>
-
- org.eclipse.persistence.internal.jpa.metamodel.PluralAttributeImpl<X,Collection<V>,V>
-
- org.eclipse.persistence.internal.jpa.metamodel.CollectionAttributeImpl<X,V>
-
- Type Parameters:
X- The type the represented Collection belongs toV- The element type of the represented Collection
- All Implemented Interfaces:
jakarta.persistence.metamodel.Attribute<X,Collection<V>>,jakarta.persistence.metamodel.Bindable<V>,jakarta.persistence.metamodel.CollectionAttribute<X,V>,jakarta.persistence.metamodel.PluralAttribute<X,Collection<V>,V>,Serializable
public class CollectionAttributeImpl<X,V> extends PluralAttributeImpl<X,Collection<V>,V> implements jakarta.persistence.metamodel.CollectionAttribute<X,V>
Purpose: Provides the implementation for the CollectionAttribute interface of the JPA 2.0 Metamodel API (part of the JSR-317 EJB 3.1 Criteria API)
Description: Instances of the type CollectionAttribute represent persistent Collection-valued attributes.
- Since:
- EclipseLink 1.2 - JPA 2.0
- See Also:
CollectionAttribute, Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jakarta.persistence.metamodel.Attribute
jakarta.persistence.metamodel.Attribute.PersistentAttributeType
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCollectionAttributeImpl(ManagedTypeImpl<X> managedType, CollectionMapping mapping)INTERNAL: Construct an instance of Collection for the managed type managedTypeprotectedCollectionAttributeImpl(ManagedTypeImpl<X> managedType, CollectionMapping mapping, boolean validationEnabled)INTERNAL: Construct an instance of Collection for the managed type managedType
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.persistence.metamodel.PluralAttribute.CollectionTypegetCollectionType()Return the collection type.ClassgetJavaType()Return the Java type of the represented attribute.-
Methods inherited from class org.eclipse.persistence.internal.jpa.metamodel.PluralAttributeImpl
getBindableJavaType, getBindableType, getCollectionMapping, getElementType, isPlural, toString
-
Methods inherited from class org.eclipse.persistence.internal.jpa.metamodel.AttributeImpl
getDeclaringType, getDescriptor, getJavaMember, getManagedTypeImpl, getMapping, getMetamodel, getName, getPersistentAttributeType, isAssociation, isCollection
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jakarta.persistence.metamodel.Attribute
getDeclaringType, getJavaMember, getName, getPersistentAttributeType, isAssociation, isCollection
-
-
-
-
Constructor Detail
-
CollectionAttributeImpl
protected CollectionAttributeImpl(ManagedTypeImpl<X> managedType, CollectionMapping mapping)
INTERNAL: Construct an instance of Collection for the managed type managedType- Parameters:
managedType-mapping-
-
CollectionAttributeImpl
protected CollectionAttributeImpl(ManagedTypeImpl<X> managedType, CollectionMapping mapping, boolean validationEnabled)
INTERNAL: Construct an instance of Collection for the managed type managedType- Parameters:
managedType-mapping-validationEnabled-
-
-
Method Detail
-
getCollectionType
public jakarta.persistence.metamodel.PluralAttribute.CollectionType getCollectionType()
Return the collection type.- Specified by:
getCollectionTypein interfacejakarta.persistence.metamodel.PluralAttribute<X,Collection<V>,V>- Specified by:
getCollectionTypein classPluralAttributeImpl<X,Collection<V>,V>- Returns:
- collection type
-
getJavaType
public Class getJavaType()
Return the Java type of the represented attribute.- Specified by:
getJavaTypein interfacejakarta.persistence.metamodel.Attribute<X,V>- Specified by:
getJavaTypein classAttributeImpl<X,Collection<V>>- Returns:
- Java type
-
-