See: Description
Interface | Description |
---|---|
ICsvBeanReader |
Interface for CSV readers reading into objects/beans.
|
ICsvBeanWriter |
Interface for all CSV writers writing to beans.
|
ICsvListReader |
Interface for readers that read into Lists.
|
ICsvListWriter |
Interface for writers that write to a List.
|
ICsvMapReader |
The interface for MapReaders, which read each CSV row into a Map.
|
ICsvMapWriter |
The interface for writers that write from Maps.
|
ICsvReader |
The interface for CSV readers.
|
ICsvResultSetWriter |
Interface for CSV writers writing JDBC
ResultSet |
ICsvWriter |
The interface for CSV writers.
|
ITokenizer |
The interface for tokenizers, which are responsible for reading the CSV file, line by line.
|
Class | Description |
---|---|
AbstractCsvReader |
Defines the standard behaviour of a CSV reader.
|
AbstractCsvWriter |
Defines the standard behaviour of a CSV writer.
|
AbstractTokenizer |
Defines the standard behaviour of a Tokenizer.
|
CsvBeanReader |
CsvBeanReader reads a CSV file by instantiating a bean for every row and mapping each column to a field on the bean
(using the supplied name mapping).
|
CsvBeanWriter |
CsvBeanWriter writes a CSV file by mapping each field on the bean to a column in the CSV file (using the supplied
name mapping).
|
CsvListReader |
CsvListReader is a simple reader that reads a row from a CSV file into a List of Strings.
|
CsvListWriter |
CsvListWriter is a simple writer capable of writing arrays and Lists to a CSV file.
|
CsvMapReader |
CsvMapReader reads each CSV row into a Map with the column name as the map key, and the column value as the map
value.
|
CsvMapWriter |
CsvMapWriter writes Maps of Objects to a CSV file.
|
CsvResultSetWriter |
CsvResultSetWriter writes a CSV file by mapping each column of the
ResultSet to a column in CSV file using
the column names stored in ResultSetMetaData |
Tokenizer |
Reads the CSV file, line by line.
|
Copyright © 2007–2015 Super CSV. All rights reserved.