Interface ProcessCSVLine

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 ProcessCSVLine
Called when a single line is read by a CSV-reader to determine how the entry is further processed.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    processLine(String[] line, boolean firstLine)
    Called when a single line is read by a CSV-reader to determine how the entry is further processed.
  • Method Details

    • processLine

      void processLine(String[] line, boolean firstLine) throws OperationFailedException
      Called when a single line is read by a CSV-reader to determine how the entry is further processed.
      Parameters:
      line - the line.
      firstLine - true when it is the first line in the file, false otherwise.
      Throws:
      OperationFailedException - if an error occurs processing the line.