com.sleepycat.je.tree
Class Tree.SearchType
java.lang.Object
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.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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.