Uses of Enum Class
org.hibernate.engine.spi.Status
Packages that use Status
Package
Description
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
-
Uses of Status in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return StatusModifier and TypeMethodDescriptionstatic @Nullable Status
Status.fromOrdinal
(int ordinal) EntityEntry.getStatus()
static Status
Returns the enum constant of this class with the specified name.static Status[]
Status.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.hibernate.engine.spi with parameters of type StatusModifier and TypeMethodDescriptionPersistenceContext.addEntity
(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement) Adds an entity to the internal caches.PersistenceContext.addEntry
(Object entity, Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement) Generates an appropriate EntityEntry instance and adds it to the event source's internal caches.PersistenceContext.addReferenceEntry
(Object entity, Status status) EntityEntryFactory.createEntityEntry
(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext) Deprecated, for removal: This API element is subject to removal in a future version.CreatesEntityEntry
.void
PersistenceContext.setEntryStatus
(EntityEntry entry, Status status) Set the status of an entryvoid