站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.3 正式版 API 英文文档

Uses of Class org.hibernate.engine.Status (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


Uses of Class
org.hibernate.engine.Status

Packages that use Status
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.event.def This package defines a default set of event listeners that implements the default behaviors of Hibernate. 
 

Uses of Status in org.hibernate.engine
 

Fields in org.hibernate.engine declared as Status
static Status Status.MANAGED
           
static Status Status.READ_ONLY
           
static Status Status.DELETED
           
static Status Status.GONE
           
static Status Status.LOADING
           
static Status Status.SAVING
           
 

Methods in org.hibernate.engine that return Status
static Status Status.parse(String name)
           
 Status EntityEntry.getStatus()
           
 

Methods in org.hibernate.engine with parameters of type Status
 void StatefulPersistenceContext.setEntryStatus(EntityEntry entry, Status status)
           
 EntityEntry StatefulPersistenceContext.addEntity(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, boolean lazyPropertiesAreUnfetched)
          Adds an entity to the internal caches.
 EntityEntry StatefulPersistenceContext.addEntry(Object entity, Status status, Object[] loadedState, Object rowId, Serializable id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, boolean lazyPropertiesAreUnfetched)
          Generates an appropriate EntityEntry instance and adds it to the event source's internal caches.
 void PersistenceContext.setEntryStatus(EntityEntry entry, Status status)
          Set the status of an entry
 EntityEntry PersistenceContext.addEntity(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, boolean lazyPropertiesAreUnfetched)
          Adds an entity to the internal caches.
 EntityEntry PersistenceContext.addEntry(Object entity, Status status, Object[] loadedState, Object rowId, Serializable id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, boolean lazyPropertiesAreUnfetched)
          Generates an appropriate EntityEntry instance and adds it to the event source's internal caches.
 void EntityEntry.setStatus(Status status)
           
 

Uses of Status in org.hibernate.event.def
 

Methods in org.hibernate.event.def with parameters of type Status
protected  void DefaultFlushEntityEventListener.validate(Object entity, EntityPersister persister, Status status, EntityMode entityMode)