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>
public abstract class AbstractBagSemantics<E>
extends Object
implements BagSemantics<Collection<E>,E>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateInitializerProducer
(NavigablePath navigablePath, PluralAttributeMapping attributeMapping, FetchParent fetchParent, boolean selected, String resultVariable, Fetch indexFetch, Fetch elementFetch, DomainResultCreationState creationState) Create a producer forCollectionInitializer
instances for the given collection semanticsThe collection's Java typegetElementIterator
(Collection<E> rawCollection) Obtain an iterator over the collection elementsinstantiateRaw
(int anticipatedSize, CollectionPersister collectionDescriptor) Create a raw (unwrapped) version of the collectionvoid
visitElements
(Collection<E> rawCollection, Consumer<? super E> action) Visit the elements of the collectionMethods 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
-
Constructor Details
-
AbstractBagSemantics
public AbstractBagSemantics()
-
-
Method Details
-
getCollectionJavaType
Description copied from interface:CollectionSemantics
The collection's Java type- Specified by:
getCollectionJavaType
in interfaceCollectionSemantics<Collection<E>,
E>
-
instantiateRaw
Description copied from interface:CollectionSemantics
Create a raw (unwrapped) version of the collection- Specified by:
instantiateRaw
in interfaceCollectionSemantics<Collection<E>,
E>
-
getElementIterator
Description copied from interface:CollectionSemantics
Obtain an iterator over the collection elements- Specified by:
getElementIterator
in interfaceCollectionSemantics<Collection<E>,
E>
-
visitElements
Description copied from interface:CollectionSemantics
Visit the elements of the collection- Specified by:
visitElements
in interfaceCollectionSemantics<Collection<E>,
E>
-