| com.jofti.btree.IResultNode
All known Subclasses: com.jofti.btree.ResultNode,
IResultNode | public interface IResultNode extends INode(Code) | | The node returned from the tree that contains the data from the real node that was a result of the search. It is really
a wrapper object to a snapshot of the real node's entry list and the sibling node links. This node is immutable and changes to the underlying node are not reflected in the result node.
author: Steve Woodcock
version: 1.5 |
getEntriesBefore | Collection getEntriesBefore(Comparable value)(Code) | | Returns the entries (if any) that are smaller than the value in the node.
Parameters: value - - a list of leaf node entries, or an empty list if none found. |
getEntry | LeafNodeEntry getEntry(Comparable value)(Code) | | Returns the leaf node Entry that matches the value, or null if none found.
Parameters: value - - the value to change. - a leaf node entry or Null. |
|
|