com.sleepycat.je
Class CursorConfig

java.lang.Object
  extended by com.sleepycat.je.CursorConfig
All Implemented Interfaces:
Cloneable

public class CursorConfig
extends Object
implements Cloneable

Javadoc for this public class is generated via the doc templates in the doc_src directory.


Field Summary
static CursorConfig DEFAULT
          Javadoc for this public instance is generated via the doc templates in the doc_src directory.
static CursorConfig DIRTY_READ
          Deprecated.  
static CursorConfig READ_COMMITTED
          Javadoc for this public instance is generated via the doc templates in the doc_src directory.
static CursorConfig READ_UNCOMMITTED
          Javadoc for this public instance is generated via the doc templates in the doc_src directory.
 
Constructor Summary
CursorConfig()
          Javadoc for this public method is generated via the doc templates in the doc_src directory.
 
Method Summary
(package private)  CursorConfig cloneConfig()
          Internal method used by Cursor to create a copy of the application supplied configuration.
 boolean getDirtyRead()
          Deprecated.  
 boolean getReadCommitted()
          Javadoc for this public method is generated via the doc templates in the doc_src directory.
 boolean getReadUncommitted()
          Javadoc for this public method is generated via the doc templates in the doc_src directory.
 void setDirtyRead(boolean dirtyRead)
          Deprecated.  
 void setReadCommitted(boolean readCommitted)
          Javadoc for this public method is generated via the doc templates in the doc_src directory.
 void setReadUncommitted(boolean readUncommitted)
          Javadoc for this public method is generated via the doc templates in the doc_src directory.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT

public static final CursorConfig DEFAULT
Javadoc for this public instance is generated via the doc templates in the doc_src directory.


READ_UNCOMMITTED

public static final CursorConfig READ_UNCOMMITTED
Javadoc for this public instance is generated via the doc templates in the doc_src directory.


DIRTY_READ

public static final CursorConfig DIRTY_READ
Deprecated. 
Javadoc for this public instance is generated via the doc templates in the doc_src directory.


READ_COMMITTED

public static final CursorConfig READ_COMMITTED
Javadoc for this public instance is generated via the doc templates in the doc_src directory.

Constructor Detail

CursorConfig

public CursorConfig()
Javadoc for this public method is generated via the doc templates in the doc_src directory.

Method Detail

setReadUncommitted

public void setReadUncommitted(boolean readUncommitted)
Javadoc for this public method is generated via the doc templates in the doc_src directory.


getReadUncommitted

public boolean getReadUncommitted()
Javadoc for this public method is generated via the doc templates in the doc_src directory.


setDirtyRead

public void setDirtyRead(boolean dirtyRead)
Deprecated. 

Javadoc for this public method is generated via the doc templates in the doc_src directory.


getDirtyRead

public boolean getDirtyRead()
Deprecated. 

Javadoc for this public method is generated via the doc templates in the doc_src directory.


setReadCommitted

public void setReadCommitted(boolean readCommitted)
Javadoc for this public method is generated via the doc templates in the doc_src directory.


getReadCommitted

public boolean getReadCommitted()
Javadoc for this public method is generated via the doc templates in the doc_src directory.


cloneConfig

CursorConfig cloneConfig()
Internal method used by Cursor to create a copy of the application supplied configuration. Done this way to provide non-public cloning.



Copyright 2004-2005 Sleepycat, Inc. All Rights Reserved.