Uses of Class
org.hibernate.engine.spi.CollectionEntry
-
Packages that use CollectionEntry Package Description org.hibernate.engine.spi org.hibernate.envers.event.spi -
-
Uses of CollectionEntry in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return CollectionEntry Modifier and Type Method Description CollectionEntryPersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection collection, java.io.Serializable id)add a collection we just pulled out of the cache (does not need initializing)static CollectionEntryCollectionEntry. deserialize(java.io.ObjectInputStream ois, SessionImplementor session)Custom deserialization routine used during deserialization of a Session/PersistenceContext for increased performance.CollectionEntryPersistenceContext. getCollectionEntry(PersistentCollection coll)Get the collection entry for a persistent collectionCollectionEntryPersistenceContext. getCollectionEntryOrNull(java.lang.Object collection)Get the collection entry for a collection passed to filter, which might be a collection wrapper, an array, or an unwrapped collection.CollectionEntryPersistenceContext. removeCollectionEntry(PersistentCollection collection)Remove aPersistentCollectionfrom thePersistenceContext.Methods in org.hibernate.engine.spi with parameters of type CollectionEntry Modifier and Type Method Description voidBatchFetchQueue. addBatchLoadableCollection(PersistentCollection collection, CollectionEntry ce)If a CollectionEntry represents a batch loadable collection, add it to the queue.voidBatchFetchQueue. removeBatchLoadableCollection(CollectionEntry ce)After a collection was initialized or evicted, we don't need to batch fetch it anymore, remove it from the queue if necessaryMethod parameters in org.hibernate.engine.spi with type arguments of type CollectionEntry Modifier and Type Method Description voidPersistenceContext. forEachCollectionEntry(java.util.function.BiConsumer<PersistentCollection,CollectionEntry> action, boolean concurrent)Execute some action on each entry of the collectionEntries map, optionally iterating on a defensive copy. -
Uses of CollectionEntry in org.hibernate.envers.event.spi
Methods in org.hibernate.envers.event.spi that return CollectionEntry Modifier and Type Method Description protected CollectionEntryBaseEnversCollectionEventListener. getCollectionEntry(AbstractCollectionEvent event)Methods in org.hibernate.envers.event.spi with parameters of type CollectionEntry Modifier and Type Method Description protected voidBaseEnversCollectionEventListener. onCollectionAction(AbstractCollectionEvent event, PersistentCollection newColl, java.io.Serializable oldColl, CollectionEntry collectionEntry)protected voidBaseEnversCollectionEventListener. onCollectionActionInversed(AbstractCollectionEvent event, PersistentCollection newColl, java.io.Serializable oldColl, CollectionEntry collectionEntry)
-