Interface RowIterator

  • All Superinterfaces:
    java.util.Iterator, RangeIterator
    All Known Implementing Classes:
    RowIteratorAdapter

    public interface RowIterator
    extends RangeIterator
    Allows easy iteration through a list of Rows with nextRow as well as a skip method inherited from RangeIterator.
    • Method Detail

      • nextRow

        Row nextRow()
        Returns the next Row in the iteration.
        Returns:
        the next Row in the iteration.
        Throws:
        java.util.NoSuchElementException - if iteration has no more Rows.