Interface CsvHandler

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 CsvHandler
CSV的行处理器,实现此接口用于按照行处理数据
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    处理行数据
  • Method Details

    • handle

      void handle(CsvRow row)
      处理行数据
      Parameters:
      row - 行数据