public interface SheetMapper<T>
| Modifier and Type | Method and Description |
|---|---|
<RH extends org.simpleflatmapper.util.CheckedConsumer<T>> |
forEach(int startRow,
org.apache.poi.ss.usermodel.Sheet sheet,
RH consumer) |
<RH extends org.simpleflatmapper.util.CheckedConsumer<T>> |
forEach(org.apache.poi.ss.usermodel.Sheet sheet,
RH consumer) |
Iterator<T> |
iterator(int startRow,
org.apache.poi.ss.usermodel.Sheet sheet) |
Iterator<T> |
iterator(org.apache.poi.ss.usermodel.Sheet sheet) |
Stream<T> |
stream(int startRow,
org.apache.poi.ss.usermodel.Sheet sheet) |
Stream<T> |
stream(org.apache.poi.ss.usermodel.Sheet sheet) |
Iterator<T> iterator(org.apache.poi.ss.usermodel.Sheet sheet)
sheet - the sheet to map fromIterator<T> iterator(int startRow, org.apache.poi.ss.usermodel.Sheet sheet)
startRow - row index to start atsheet - the sheet to map from<RH extends org.simpleflatmapper.util.CheckedConsumer<T>> RH forEach(org.apache.poi.ss.usermodel.Sheet sheet, RH consumer)
RH - the type of the handlersheet - the sheet to map fromconsumer - the handler to call back<RH extends org.simpleflatmapper.util.CheckedConsumer<T>> RH forEach(int startRow, org.apache.poi.ss.usermodel.Sheet sheet, RH consumer)
RH - the type of the handlerstartRow - row index to start atsheet - the sheet to map fromconsumer - the handler to call backStream<T> stream(org.apache.poi.ss.usermodel.Sheet sheet)
sheet - the sheet to map fromCopyright © 2017. All rights reserved.