| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CacheMode | |
|---|---|
| org.hibernate | This package defines the central Hibernate APIs. | 
| org.hibernate.cfg | This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. | 
| org.hibernate.ejb | |
| org.hibernate.ejb.util | |
| org.hibernate.engine.spi | |
| org.hibernate.envers.entities.mapper.relation.lazy | |
| org.hibernate.envers.query | |
| org.hibernate.envers.query.impl | |
| org.hibernate.internal | An internal package containing mostly implementations of central Hibernate APIs of the org.hibernatepackage. | 
| org.hibernate.test.onetomany | |
| org.hibernate.test.querycache | |
| org.hibernate.test.readonly | |
| Uses of CacheMode in org.hibernate | 
|---|
| Methods in org.hibernate that return CacheMode | |
|---|---|
|  CacheMode | Session.getCacheMode()Get the current cache mode. | 
| static CacheMode | CacheMode.valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CacheMode[] | CacheMode.values()Returns an array containing the constants of this enum type, in the order they are declared. | 
| Methods in org.hibernate with parameters of type CacheMode | |
|---|---|
|  Query | Query.setCacheMode(CacheMode cacheMode)Override the current session cache mode, just for this query. | 
|  Criteria | Criteria.setCacheMode(CacheMode cacheMode)Override the cache mode for this particular query. | 
|  void | Session.setCacheMode(CacheMode cacheMode)Set the cache mode. | 
| Uses of CacheMode in org.hibernate.cfg | 
|---|
| Methods in org.hibernate.cfg that return CacheMode | |
|---|---|
| static CacheMode | HbmBinder.getCacheMode(String cacheMode) | 
| Uses of CacheMode in org.hibernate.ejb | 
|---|
| Methods in org.hibernate.ejb that return CacheMode | |
|---|---|
|  CacheMode | AbstractEntityManagerImpl.determineAppropriateLocalCacheMode(Map<String,Object> localProperties) | 
| Methods in org.hibernate.ejb with parameters of type CacheMode | |
|---|---|
| protected abstract  void | AbstractQueryImpl.applyCacheMode(CacheMode cacheMode) | 
| protected  void | QueryImpl.applyCacheMode(CacheMode cacheMode) | 
| Uses of CacheMode in org.hibernate.ejb.util | 
|---|
| Fields in org.hibernate.ejb.util declared as CacheMode | |
|---|---|
| static CacheMode | CacheModeHelper.DEFAULT_LEGACY_MODE | 
| Methods in org.hibernate.ejb.util that return CacheMode | |
|---|---|
| static CacheMode | ConfigurationHelper.getCacheMode(Object value) | 
| static CacheMode | CacheModeHelper.interpretCacheMode(CacheStoreMode storeMode,
                   CacheRetrieveMode retrieveMode)Given a JPA CacheStoreModeandCacheRetrieveMode, determine the corresponding
 legacy HibernateCacheMode. | 
| Methods in org.hibernate.ejb.util with parameters of type CacheMode | |
|---|---|
| static CacheRetrieveMode | CacheModeHelper.interpretCacheRetrieveMode(CacheMode cacheMode) | 
| static CacheStoreMode | CacheModeHelper.interpretCacheStoreMode(CacheMode cacheMode) | 
| Uses of CacheMode in org.hibernate.engine.spi | 
|---|
| Methods in org.hibernate.engine.spi that return CacheMode | |
|---|---|
|  CacheMode | SessionImplementor.getCacheMode() | 
|  CacheMode | NamedQueryDefinition.getCacheMode() | 
| Methods in org.hibernate.engine.spi with parameters of type CacheMode | |
|---|---|
|  void | SessionImplementor.setCacheMode(CacheMode cm) | 
| Constructors in org.hibernate.engine.spi with parameters of type CacheMode | |
|---|---|
| NamedQueryDefinition(String name,
                     String query,
                     boolean cacheable,
                     String cacheRegion,
                     Integer timeout,
                     Integer fetchSize,
                     FlushMode flushMode,
                     CacheMode cacheMode,
                     boolean readOnly,
                     String comment,
                     Map parameterTypes) | |
| NamedSQLQueryDefinition(String name,
                        String query,
                        NativeSQLQueryReturn[] queryReturns,
                        List<String> querySpaces,
                        boolean cacheable,
                        String cacheRegion,
                        Integer timeout,
                        Integer fetchSize,
                        FlushMode flushMode,
                        CacheMode cacheMode,
                        boolean readOnly,
                        String comment,
                        Map parameterTypes,
                        boolean callable)This form used to construct a NamedSQLQueryDefinition from the binder code when a the result-set mapping information is explicitly provided in the query definition (i.e., no resultset-mapping used) | |
| NamedSQLQueryDefinition(String name,
                        String query,
                        String resultSetRef,
                        List<String> querySpaces,
                        boolean cacheable,
                        String cacheRegion,
                        Integer timeout,
                        Integer fetchSize,
                        FlushMode flushMode,
                        CacheMode cacheMode,
                        boolean readOnly,
                        String comment,
                        Map parameterTypes,
                        boolean callable)This form used to construct a NamedSQLQueryDefinition from the binder code when a resultset-mapping reference is used. | |
| Uses of CacheMode in org.hibernate.envers.entities.mapper.relation.lazy | 
|---|
| Methods in org.hibernate.envers.entities.mapper.relation.lazy that return CacheMode | |
|---|---|
|  CacheMode | AbstractDelegateSessionImplementor.getCacheMode() | 
| Methods in org.hibernate.envers.entities.mapper.relation.lazy with parameters of type CacheMode | |
|---|---|
|  void | AbstractDelegateSessionImplementor.setCacheMode(CacheMode cm) | 
| Uses of CacheMode in org.hibernate.envers.query | 
|---|
| Methods in org.hibernate.envers.query with parameters of type CacheMode | |
|---|---|
|  AuditQuery | AuditQuery.setCacheMode(CacheMode cacheMode) | 
| Uses of CacheMode in org.hibernate.envers.query.impl | 
|---|
| Methods in org.hibernate.envers.query.impl with parameters of type CacheMode | |
|---|---|
|  AuditQuery | AbstractAuditQuery.setCacheMode(CacheMode cacheMode) | 
| Uses of CacheMode in org.hibernate.internal | 
|---|
| Methods in org.hibernate.internal that return CacheMode | |
|---|---|
|  CacheMode | SessionImpl.getCacheMode() | 
|  CacheMode | StatelessSessionImpl.getCacheMode() | 
|  CacheMode | AbstractQueryImpl.getCacheMode() | 
| Methods in org.hibernate.internal with parameters of type CacheMode | |
|---|---|
|  void | SessionImpl.setCacheMode(CacheMode cacheMode) | 
|  Criteria | CriteriaImpl.setCacheMode(CacheMode cacheMode) | 
|  Criteria | CriteriaImpl.Subcriteria.setCacheMode(CacheMode cacheMode) | 
|  void | StatelessSessionImpl.setCacheMode(CacheMode cm) | 
|  Query | AbstractQueryImpl.setCacheMode(CacheMode cacheMode) | 
| Uses of CacheMode in org.hibernate.test.onetomany | 
|---|
| Methods in org.hibernate.test.onetomany that return CacheMode | |
|---|---|
| protected  CacheMode | RecursiveBidirectionalOneToManyCacheTest.getSessionCacheMode() | 
| protected  CacheMode | RecursiveVersionedBidirectionalOneToManyCacheTest.getSessionCacheMode() | 
| protected  CacheMode | RecursiveVersionedBidirectionalOneToManyNoCacheTest.getSessionCacheMode() | 
| protected  CacheMode | RecursiveBidirectionalOneToManyNoCacheTest.getSessionCacheMode() | 
| protected abstract  CacheMode | AbstractRecursiveBidirectionalOneToManyTest.getSessionCacheMode() | 
| Uses of CacheMode in org.hibernate.test.querycache | 
|---|
| Methods in org.hibernate.test.querycache that return CacheMode | |
|---|---|
| protected  CacheMode | CriteriaQueryCacheNormalResultTransformerTest.getQueryCacheMode() | 
| protected  CacheMode | HqlQueryCacheIgnoreResultTransformerTest.getQueryCacheMode() | 
| protected abstract  CacheMode | AbstractQueryCacheResultTransformerTest.getQueryCacheMode() | 
| protected  CacheMode | CriteriaQueryCachePutResultTransformerTest.getQueryCacheMode() | 
| protected  CacheMode | HqlQueryCachePutResultTransformerTest.getQueryCacheMode() | 
| protected  CacheMode | CriteriaQueryCacheIgnoreResultTransformerTest.getQueryCacheMode() | 
| protected  CacheMode | HqlQueryCacheNormalResultTransformerTest.getQueryCacheMode() | 
| Uses of CacheMode in org.hibernate.test.readonly | 
|---|
| Methods in org.hibernate.test.readonly that return CacheMode | |
|---|---|
| protected  CacheMode | AbstractReadOnlyTest.getSessionCacheMode() | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||