Interface RowFunction<T,R>

Type Parameters:
T - The type of the row data
R - 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.

@FunctionalInterface public interface RowFunction<T,R>
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

    Modifier and Type
    Method
    Description
    apply(T rowData, Cursor cursor)
    Applies this function to the given row data and cursor.
  • Method Details

    • apply

      R apply(T rowData, Cursor cursor)
      Applies this function to the given row data and cursor.
      Parameters:
      rowData - The data for a single row
      cursor - The cursor tracking the current position
      Returns:
      The computed value