-bottom

net.sf.csv4j
Interface CSVBeanProcessor<T>

Type Parameters:
T - type of bean

public interface CSVBeanProcessor<T>

Similar interface to the CSVLineProcessor interface for processing CSV lines except that the field values are written to a bean object.

Since:
1.0
Author:
Shawn Boyce

Method Summary
 boolean continueProcessing()
          Indicates if the line processing should continue.
 void processDataLine(int linenumber, T bean)
          Process a CSV data line.
 

Method Detail

processDataLine

void processDataLine(int linenumber,
                     T bean)
Process a CSV data line.

Parameters:
linenumber - line number in the file
bean - bean whose properties should be set from the field values

continueProcessing

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

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

-bottom