- Direct Known Subclasses:
- BTreeSearchIterator, Cursor
public class Path<V>
extends java.lang.Object
An internal class for searching and iterating through a tree. As it traverses the tree,
it adds the nodes visited to a stack. This allows us to backtrack from a child node
to its parent.
As we navigate the tree, we destructively modify this stack.
Path is only intended to be used via Cursor.