Class TupleUnwrappingIterator<T,K>
- java.lang.Object
-
- org.apache.flink.api.java.operators.translation.TupleUnwrappingIterator<T,K>
-
- All Implemented Interfaces:
Serializable,Iterable<T>,Iterator<T>
@Internal public class TupleUnwrappingIterator<T,K> extends Object implements Iterator<T>, Iterable<T>, Serializable
An iterator that reads 2-tuples (key value pairs) and returns only the values (second field). The iterator also tracks the keys, as the pairs flow though it.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TupleUnwrappingIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KgetLastKey()booleanhasNext()Iterator<T>iterator()Tnext()voidremove()voidset(Iterator<org.apache.flink.api.java.tuple.Tuple2<K,T>> iterator)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
getLastKey
public K getLastKey()
-
-