Interface RowCallbackHandler


public interface RowCallbackHandler
Callback to handle skipped lines. Useful for header/footer processing.
Author:
Marten Deinum
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Implementations must implement this method to process each row of data in the RowSet.
  • Method Details

    • handleRow

      void handleRow(RowSet rs)
      Implementations must implement this method to process each row of data in the RowSet.

      This method should not call next() on the RowSetSet; it is only supposed to extract values of the current row.

      Exactly what the implementation chooses to do is up to it: A trivial implementation might simply count rows, while another implementation might build a special header row.

      Parameters:
      rs - the RowSet to process (preset at the current row)