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 CollectionEntry
PersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection collection, java.io.Serializable id)
add a collection we just pulled out of the cache (does not need initializing)static CollectionEntry
CollectionEntry. deserialize(java.io.ObjectInputStream ois, SessionImplementor session)
Custom deserialization routine used during deserialization of a Session/PersistenceContext for increased performance.CollectionEntry
PersistenceContext. getCollectionEntry(PersistentCollection coll)
Get the collection entry for a persistent collectionCollectionEntry
PersistenceContext. 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.Methods in org.hibernate.engine.spi with parameters of type CollectionEntry Modifier and Type Method Description void
BatchFetchQueue. addBatchLoadableCollection(PersistentCollection collection, CollectionEntry ce)
If a CollectionEntry represents a batch loadable collection, add it to the queue.void
BatchFetchQueue. 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 necessary -
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 CollectionEntry
BaseEnversCollectionEventListener. getCollectionEntry(AbstractCollectionEvent event)
Methods in org.hibernate.envers.event.spi with parameters of type CollectionEntry Modifier and Type Method Description protected void
BaseEnversCollectionEventListener. onCollectionAction(AbstractCollectionEvent event, PersistentCollection newColl, java.io.Serializable oldColl, CollectionEntry collectionEntry)
protected void
BaseEnversCollectionEventListener. onCollectionActionInversed(AbstractCollectionEvent event, PersistentCollection newColl, java.io.Serializable oldColl, CollectionEntry collectionEntry)
-