public interface SearchIterator<K,V>
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext() |
V |
next(K key)
Searches "forwards" (in direction of travel) in the iterator for the required key;
if this or any key greater has already been returned by the iterator, null will be returned.
|
boolean hasNext()
V next(K key)
key
- to search forCopyright © 2015 The Apache Software Foundation