Class CustomCollectionTypeSemantics<CE,E>
- java.lang.Object
-
- org.hibernate.collection.internal.CustomCollectionTypeSemantics<CE,E>
-
- All Implemented Interfaces:
CollectionSemantics<CE,E>
public class CustomCollectionTypeSemantics<CE,E> extends Object implements CollectionSemantics<CE,E>
A collection semantics wrapper forCollectionType.
-
-
Constructor Summary
Constructors Constructor Description CustomCollectionTypeSemantics(CollectionType collectionType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CollectionInitializerProducercreateInitializerProducer(NavigablePath navigablePath, PluralAttributeMapping attributeMapping, FetchParent fetchParent, boolean selected, String resultVariable, Fetch indexFetch, Fetch elementFetch, DomainResultCreationState creationState)Create a producer forCollectionInitializerinstances for the given collection semanticsCollectionClassificationgetCollectionClassification()The classification handled by this semanticClass<?>getCollectionJavaType()The collection's Java typeCollectionTypegetCollectionType()Iterator<E>getElementIterator(CE rawCollection)Obtain an iterator over the collection elementsCEinstantiateRaw(int anticipatedSize, CollectionPersister collectionDescriptor)Create a raw (unwrapped) version of the collectionPersistentCollection<E>instantiateWrapper(Object key, CollectionPersister collectionDescriptor, SharedSessionContractImplementor session)Create a wrapper for the collectionvoidvisitElements(CE rawCollection, Consumer<? super E> action)Visit the elements of the collectionPersistentCollection<E>wrap(CE rawCollection, CollectionPersister collectionDescriptor, SharedSessionContractImplementor session)Wrap a raw collection in wrapper-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.collection.spi.CollectionSemantics
createInitializerProducer
-
-
-
-
Constructor Detail
-
CustomCollectionTypeSemantics
public CustomCollectionTypeSemantics(CollectionType collectionType)
-
-
Method Detail
-
getCollectionType
public CollectionType getCollectionType()
-
getCollectionClassification
public CollectionClassification getCollectionClassification()
Description copied from interface:CollectionSemanticsThe classification handled by this semantic- Specified by:
getCollectionClassificationin interfaceCollectionSemantics<CE,E>
-
getCollectionJavaType
public Class<?> getCollectionJavaType()
Description copied from interface:CollectionSemanticsThe collection's Java type- Specified by:
getCollectionJavaTypein interfaceCollectionSemantics<CE,E>
-
instantiateRaw
public CE instantiateRaw(int anticipatedSize, CollectionPersister collectionDescriptor)
Description copied from interface:CollectionSemanticsCreate a raw (unwrapped) version of the collection- Specified by:
instantiateRawin interfaceCollectionSemantics<CE,E>
-
getElementIterator
public Iterator<E> getElementIterator(CE rawCollection)
Description copied from interface:CollectionSemanticsObtain an iterator over the collection elements- Specified by:
getElementIteratorin interfaceCollectionSemantics<CE,E>
-
visitElements
public void visitElements(CE rawCollection, Consumer<? super E> action)
Description copied from interface:CollectionSemanticsVisit the elements of the collection- Specified by:
visitElementsin interfaceCollectionSemantics<CE,E>
-
createInitializerProducer
public CollectionInitializerProducer createInitializerProducer(NavigablePath navigablePath, PluralAttributeMapping attributeMapping, FetchParent fetchParent, boolean selected, String resultVariable, Fetch indexFetch, Fetch elementFetch, DomainResultCreationState creationState)
Description copied from interface:CollectionSemanticsCreate a producer forCollectionInitializerinstances for the given collection semantics- Specified by:
createInitializerProducerin interfaceCollectionSemantics<CE,E>- See Also:
InitializerProducerBuilder
-
instantiateWrapper
public PersistentCollection<E> instantiateWrapper(Object key, CollectionPersister collectionDescriptor, SharedSessionContractImplementor session)
Description copied from interface:CollectionSemanticsCreate a wrapper for the collection- Specified by:
instantiateWrapperin interfaceCollectionSemantics<CE,E>
-
wrap
public PersistentCollection<E> wrap(CE rawCollection, CollectionPersister collectionDescriptor, SharedSessionContractImplementor session)
Description copied from interface:CollectionSemanticsWrap a raw collection in wrapper- Specified by:
wrapin interfaceCollectionSemantics<CE,E>
-
-