Class Combiner.ValueIterator
java.lang.Object
org.apache.accumulo.core.iterators.Combiner.ValueIterator
- Enclosing class:
- Combiner
A Java Iterator that iterates over the Values for a given Key from a source
SortedKeyValueIterator.
-
Constructor Summary
ConstructorDescriptionValueIterator
(SortedKeyValueIterator<Key, Value> source) Constructs an iterator over Values whose Keys are versions of the current topKey of the source SortedKeyValueIterator. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
ValueIterator
Constructs an iterator over Values whose Keys are versions of the current topKey of the source SortedKeyValueIterator.- Parameters:
source
- TheSortedKeyValueIterator<Key,Value>
from which to read data.
-
-
Method Details
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove()This method is unsupported in this iterator.- Specified by:
remove
in interfaceIterator<Value>
- Throws:
UnsupportedOperationException
- when called
-