-bottom

net.sf.csv4j
Interface CSVSortedFieldMapProcessor


public interface CSVSortedFieldMapProcessor

Similar interface to the CSVLineProcessor interface for processing CSV lines except that the lines are processed as a SortedMap of field name and values.

Since:
1.0
Author:
Shawn Boyce

Method Summary
 boolean continueProcessing()
          Indicates if the line processing should continue.
 void processDataLine(int linenumber, SortedMap<String,String> fields)
          Process a CSV data line.
 

Method Detail

processDataLine

void processDataLine(int linenumber,
                     SortedMap<String,String> fields)
Process a CSV data line.

Parameters:
linenumber - line number in the file
fields - map of CSV fields names/values (sorted in field order)

continueProcessing

boolean continueProcessing()
Indicates if the line processing should continue.

Returns:
true if continue to process lines; false if processing should stop.

-bottom