Package org.hibernate.collection.spi
Class AbstractBagSemantics<E>
- java.lang.Object
-
- org.hibernate.collection.spi.AbstractBagSemantics<E>
-
- All Implemented Interfaces:
BagSemantics<Collection<E>,E>,CollectionSemantics<Collection<E>,E>
- Direct Known Subclasses:
StandardBagSemantics,StandardIdentifierBagSemantics
public abstract class AbstractBagSemantics<E> extends Object implements BagSemantics<Collection<E>,E>
-
-
Constructor Summary
Constructors Constructor Description AbstractBagSemantics()
-
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 semanticsClass<Collection>getCollectionJavaType()The collection's Java typeIterator<E>getElementIterator(Collection<E> rawCollection)Obtain an iterator over the collection elementsCollection<E>instantiateRaw(int anticipatedSize, CollectionPersister collectionDescriptor)Create a raw (unwrapped) version of the collectionvoidvisitElements(Collection<E> rawCollection, Consumer<? super E> action)Visit the elements of the collection-
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, getCollectionClassification, instantiateWrapper, wrap
-
-
-
-
Method Detail
-
getCollectionJavaType
public Class<Collection> getCollectionJavaType()
Description copied from interface:CollectionSemanticsThe collection's Java type- Specified by:
getCollectionJavaTypein interfaceCollectionSemantics<Collection<E>,E>
-
instantiateRaw
public Collection<E> instantiateRaw(int anticipatedSize, CollectionPersister collectionDescriptor)
Description copied from interface:CollectionSemanticsCreate a raw (unwrapped) version of the collection- Specified by:
instantiateRawin interfaceCollectionSemantics<Collection<E>,E>
-
getElementIterator
public Iterator<E> getElementIterator(Collection<E> rawCollection)
Description copied from interface:CollectionSemanticsObtain an iterator over the collection elements- Specified by:
getElementIteratorin interfaceCollectionSemantics<Collection<E>,E>
-
visitElements
public void visitElements(Collection<E> rawCollection, Consumer<? super E> action)
Description copied from interface:CollectionSemanticsVisit the elements of the collection- Specified by:
visitElementsin interfaceCollectionSemantics<Collection<E>,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<Collection<E>,E>- See Also:
InitializerProducerBuilder
-
-