com.sleepycat.je.tree
Class Tree.SearchType

java.lang.Object
  extended by com.sleepycat.je.tree.Tree.SearchType
Enclosing class:
Tree

public static class Tree.SearchType
extends Object

Embodies an enum for the type of search being performed. NORMAL means do a regular search down the tree. LEFT/RIGHT means search down the left/right side to find the first/last node in the tree. DELETE means to search down the tree using a key, but instead of returning the lowest node matching that key, the lowest node in the path with more than one entry is returned.


Field Summary
static Tree.SearchType DELETE
           
static Tree.SearchType LEFT
           
static Tree.SearchType NORMAL
           
static Tree.SearchType RIGHT
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NORMAL

public static final Tree.SearchType NORMAL

LEFT

public static final Tree.SearchType LEFT

RIGHT

public static final Tree.SearchType RIGHT

DELETE

public static final Tree.SearchType DELETE


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