Package io.github.dornol.excelkit.core
Interface RowFunction<T,R>
- Type Parameters:
T- The type of the row dataR- The type of the value to be returned
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for mapping a row of data to a cell value, with optional cursor access.
Shared base for both Excel and CSV column value extraction.
- Since:
- 2025-07-19
-
Method Summary
-
Method Details
-
apply
Applies this function to the given row data and cursor.- Parameters:
rowData- The data for a single rowcursor- The cursor tracking the current position- Returns:
- The computed value
-