Uses of Class
org.hibernate.FlushMode

Packages that use FlushMode
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
 

Uses of FlushMode in org.hibernate
 

Fields in org.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.
static FlushMode FlushMode.ALWAYS
          The Session is flushed before every query.
 

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

Methods in org.hibernate with parameters of type FlushMode
 void Session.setFlushMode(FlushMode flushMode)
          Set the flush mode.
 Query Query.setFlushMode(FlushMode flushMode)
          Override the current session flush mode, just for this query.
 boolean FlushMode.lessThan(FlushMode other)
           
 Criteria Criteria.setFlushMode(FlushMode flushMode)
          Override the flush mode
 

Uses of FlushMode in org.hibernate.engine
 

Methods in org.hibernate.engine that return FlushMode
 FlushMode NamedQueryDefinition.getFlushMode()
           
 

Constructors in org.hibernate.engine with parameters of type FlushMode
NamedSQLQueryDefinition(String query, SQLQueryReturn[] queryReturns, SQLQueryScalarReturn[] scalarReturns, List querySpaces, boolean cacheable, String cacheRegion, Integer timeout, Integer fetchSize, FlushMode flushMode, boolean callable)
           
NamedQueryDefinition(String query, boolean cacheable, String cacheRegion, Integer timeout, Integer fetchSize, FlushMode flushMode)
           
 

Uses of FlushMode in org.hibernate.impl
 

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

Methods in org.hibernate.impl with parameters of type FlushMode
 void SessionImpl.setFlushMode(FlushMode flushMode)
           
 Criteria CriteriaImpl.setFlushMode(FlushMode flushMode)
           
 Criteria CriteriaImpl.Subcriteria.setFlushMode(FlushMode flushMode)
           
 Query AbstractQueryImpl.setFlushMode(FlushMode flushMode)
           
 

Constructors in org.hibernate.impl with parameters of type FlushMode
QueryImpl(String queryString, FlushMode flushMode, SessionImplementor session)
           
AbstractQueryImpl(String queryString, FlushMode flushMode, SessionImplementor session)