Uses of Class
org.hibernate.engine.spi.Status
-
Packages that use Status Package Description org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.engine.spi -
-
Uses of Status in org.hibernate.engine.internal
Fields in org.hibernate.engine.internal with type parameters of type Status Modifier and Type Field Description protected static AbstractEntityEntry.EnumState<Status>
AbstractEntityEntry.EnumState. PREVIOUS_STATUS
protected static AbstractEntityEntry.EnumState<Status>
AbstractEntityEntry.EnumState. STATUS
Methods in org.hibernate.engine.internal that return Status Modifier and Type Method Description Status
AbstractEntityEntry. getStatus()
Methods in org.hibernate.engine.internal with parameters of type Status Modifier and Type Method Description EntityEntry
StatefulPersistenceContext. addEntity(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)
EntityEntry
StatefulPersistenceContext. addEntry(Object entity, Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)
void
StatefulPersistenceContext. addReferenceEntry(Object entity, Status status)
EntityEntry
ImmutableEntityEntryFactory. createEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)
EntityEntry
MutableEntityEntryFactory. createEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)
void
StatefulPersistenceContext. setEntryStatus(EntityEntry entry, Status status)
void
AbstractEntityEntry. setStatus(Status status)
Constructors in org.hibernate.engine.internal with parameters of type Status Constructor Description AbstractEntityEntry(SessionFactoryImplementor factory, String entityName, Object id, Status status, Status previousStatus, Object[] loadedState, Object[] deletedState, Object version, LockMode lockMode, boolean existsInDatabase, boolean isBeingReplicated, PersistenceContext persistenceContext)
This for is used during custom deserialization handlingAbstractEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)
ImmutableEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)
MutableEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)
-
Uses of Status in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Status Modifier and Type Method Description Status
EntityEntry. getStatus()
static Status
Status. valueOf(String name)
Returns the enum constant of this type with the specified name.static Status[]
Status. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.engine.spi with parameters of type Status Modifier and Type Method Description EntityEntry
PersistenceContext. 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.EntityEntry
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.EntityEntry
EntityEntryFactory. createEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)
CreatesEntityEntry
.void
PersistenceContext. setEntryStatus(EntityEntry entry, Status status)
Set the status of an entryvoid
EntityEntry. setStatus(Status status)
-