01: /*
02: * Created on 27-Jun-2005
03: *
04: */
05: package com.jofti.btree;
06:
07: /**
08: *
09: * An interface implemented by LeafNodes to enable an entry retrieval.<p>
10: *
11: * @author Steve Woodcock
12: */
13: public interface Leaf {
14:
15: /**
16: * Returns the matching LeafNodeEntry (if any) for the value passed in.<p>
17: *
18: * @param entry <br>
19: * @return a LeafNodeEntry or null if none can be found.
20: */
21: public LeafNodeEntry getEntry(Comparable entry);
22: }
|