Interface RowIterator


  • public interface RowIterator
    • Method Detail

      • hasNextRow

        boolean hasNextRow()
        Returns true if the iteration has more rows.
        Returns:
        true if the iteration has more rows
      • next

        Row next()
          throws java.io.IOException
        Returns the next row in the iteration.

        Note that the Row instance returned by this method each time is the same instance. In other words, calling next() will only change the member variables inside the Row instance, but will not generate a new Row instance.

        Returns:
        the next element in the iteration
        Throws:
        java.io.IOException - if any I/O errors occur
      • reset

        void reset()
        Resets the iteration.