Interface CsvRecordConverter<T>

  • Type Parameters:
    T - Conversion type

    public interface CsvRecordConverter<T>
    This interface is used to define a converter that transform a CSVRecord into another type.

    The CsvRecordConverters class defines common converters.

    See Also:
    CsvRecordConverters
    • Method Detail

      • convertRecord

        T convertRecord​(org.apache.commons.csv.CSVRecord record)
        Converts the CSV record into another type.
        Parameters:
        record - CSV record to convert
        Returns:
        converted CSV record