Key - Value - public interface IndexVisitor<Key,Value>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isInterestedInKeysBetween(Key first,
Key second,
Comparator comparator)
Do you want to visit the range of BTree entries between the first and and second key?
|
boolean |
isSatiated() |
void |
visit(List<Key> keys,
List<Value> values,
Comparator comparator)
The keys and values of an index node.
|
boolean isInterestedInKeysBetween(Key first, Key second, Comparator comparator)
first - if null indicates the range of values before the second key.second - if null indicates the range of values after the first key.comparator - the Comparator configured for the index, may be null.void visit(List<Key> keys, List<Value> values, Comparator comparator)
keys - comparator - the Comparator configured for the index, may be null.values - boolean isSatiated()
Copyright © 2009–2015 FuseSource, Corp.. All rights reserved.