Interface RowIterator<T extends RowData>

    • Method Detail

      • advanceNext

        boolean advanceNext()
        Advance this iterator by a single row. Returns `false` if this iterator has no more rows and `true` otherwise. If this returns `true`, then the new row can be retrieved by calling getRow().
      • getRow

        T getRow()
        Retrieve the row from this iterator. This method is idempotent. It is illegal to call this method after [[advanceNext()]] has returned `false`.