Interface SimpleRowExtractor

All Superinterfaces:
RowExtractor, Serializable

@Immutable public interface SimpleRowExtractor extends RowExtractor
The default implementation of RowExtractor.
  • Method Details

    • stopCondition

      @Default default StopCondition stopCondition()
      The StopCondition used when iterating over the rows in the sheet. Defaults to always returning false, so data will be extracted until the end of the sheet, including possibly including many empty rows.
    • extractRows

      default List<ParsedRecord> extractRows(org.apache.poi.ss.usermodel.Sheet sheet, Header header, NumericCellStringifier numericCellStringifier)
      Specified by:
      extractRows in interface RowExtractor