Berkeley DB Java Edition
version 5.0.58

Uses of Class
com.sleepycat.je.CacheMode

Packages that use CacheMode
com.sleepycat.je Foundation for creating environments, databases and transactions; provides cursor based data access. 
com.sleepycat.persist The Direct Persistence Layer (DPL) adds a persistent object model to the Berkeley DB transactional engine. 
 

Uses of CacheMode in com.sleepycat.je
 

Methods in com.sleepycat.je that return CacheMode
 CacheMode Cursor.getCacheMode()
          Returns the CacheMode used for subsequent operations performed using this cursor.
 CacheMode EnvironmentMutableConfig.getCacheMode()
          Returns the default CacheMode used for operations performed in this environment, or null if DEFAULT is used.
 CacheMode DatabaseConfig.getCacheMode()
          Returns the default CacheMode used for operations performed on this database, or null if the environment default is used.
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 com.sleepycat.je with parameters of type CacheMode
 void Cursor.setCacheMode(CacheMode cacheMode)
          Sets the CacheMode used for subsequent operations performed using this cursor.
 EnvironmentMutableConfig EnvironmentMutableConfig.setCacheMode(CacheMode cacheMode)
          Sets the default CacheMode used for operations performed in this environment.
 DatabaseConfig DatabaseConfig.setCacheMode(CacheMode cacheMode)
          Sets the default CacheMode used for operations performed on this database.
 

Uses of CacheMode in com.sleepycat.persist
 

Methods in com.sleepycat.persist that return CacheMode
 CacheMode EntityCursor.getCacheMode()
          Returns the CacheMode used for operations performed using this cursor.
 

Methods in com.sleepycat.persist with parameters of type CacheMode
 void EntityCursor.setCacheMode(CacheMode cacheMode)
          Changes the CacheMode used for operations performed using this cursor.
 


Berkeley DB Java Edition
version 5.0.58

Copyright (c) 2004-2012 Oracle. All rights reserved.