org.apache.camel.dataformat.csv
Interface CsvLineConverter<T>

Type Parameters:
T - Class for representing a single line

public interface CsvLineConverter<T>

This interface helps converting a single CSV line into another representation.


Method Summary
 T convertLine(String[] line)
          Converts a single CSV line.
 

Method Detail

convertLine

T convertLine(String[] line)
Converts a single CSV line.

Parameters:
line - CSV line
Returns:
Another representation of the CSV line


Apache Camel