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

Uses of Class net.sf.hibernate.FlushMode (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Class
net.sf.hibernate.FlushMode

Packages that use FlushMode
net.sf.hibernate   
net.sf.hibernate.impl   
net.sf.hibernate.jca   
 

Uses of FlushMode in net.sf.hibernate
 

Fields in net.sf.hibernate declared as FlushMode
static FlushMode FlushMode.NEVER
          The Session is never flushed unless flush() is explicitly called by the application.
static FlushMode FlushMode.COMMIT
          The Session is flushed when Transaction.commit() is called.
static FlushMode FlushMode.AUTO
          The Session is sometimes flushed before query execution in order to ensure that queries never return stale state.
 

Methods in net.sf.hibernate that return FlushMode
 FlushMode Session.getFlushMode()
          Get the current flush mode.
 

Methods in net.sf.hibernate with parameters of type FlushMode
 void Session.setFlushMode(FlushMode flushMode)
          Set the flush mode.
 

Uses of FlushMode in net.sf.hibernate.impl
 

Methods in net.sf.hibernate.impl that return FlushMode
 FlushMode SessionImpl.getFlushMode()
           
 

Methods in net.sf.hibernate.impl with parameters of type FlushMode
 void SessionImpl.setFlushMode(FlushMode flushMode)
           
 

Uses of FlushMode in net.sf.hibernate.jca
 

Methods in net.sf.hibernate.jca that return FlushMode
 FlushMode JCASessionImpl.getFlushMode()
           
 

Methods in net.sf.hibernate.jca with parameters of type FlushMode
 void JCASessionImpl.setFlushMode(FlushMode flushMode)