Interface RowCallbackHandler
public interface RowCallbackHandler
Callback to handle skipped lines. Useful for header/footer processing.
- Author:
- Marten Deinum
-
Method Summary
-
Method Details
-
handleRow
Implementations must implement this method to process each row of data in theRowSet.This method should not call
next()on theRowSetSet; 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- theRowSetto process (preset at the current row)
-