public interface RowIterator<T extends org.apache.flink.table.data.RowData>
Iterator.
One major departure from the Java iterator API is the fusing of the `hasNext()` and `next()`
calls: Java's iterator allows users to call `hasNext()` without immediately advancing the
iterator to consume the next row, whereas RowIterator combines these calls into a single
advanceNext() method.
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
advanceNext()
Advance this iterator by a single row.
|
T |
getRow()
Retrieve the row from this iterator.
|
boolean advanceNext()
getRow().T getRow()
Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.