| AbstractBeanField |
This base bean takes over the responsibility of converting the supplied
string to the proper type for the destination field and setting the
destination field.
|
| AbstractCsvConverter |
|
| AbstractFieldMap |
A base class to collect all generalized components of a FieldMap.
|
| AbstractFieldMapEntry |
|
| AbstractMappingStrategy |
This class collects as many generally useful parts of the implementation
of a mapping strategy as possible.
|
| BeanField |
Used to extend the Field class to include
functionality that opencsv requires.
|
| BeanFieldJoin |
This class is used for combining multiple columns of the input, possibly
with multiple identically named columns, into one field.
|
| BeanFieldSingleValue |
This class concerns itself with handling single-valued bean fields.
|
| BeanVerifier |
Classes implementing this interface may be used to verify and filter beans
after creation, but before being passed back to the calling application.
|
| ComplexFieldMapEntry |
Defines the basic functionality necessary for using a many-to-one mapping
between columns of a CSV file and bean fields.
|
| CsvConverter |
Classes implementing this interface perform a conversion from String to
some type on reading and some type to String on writing.
|
| CsvToBean |
Converts CSV data to objects.
|
| CsvToBeanBuilder |
This class makes it possible to bypass all the intermediate steps and classes
in setting up to read from a CSV source to a list of beans.
|
| CsvToBeanFilter |
Filters allow lines of input to be ignored before a bean is created.
|
| FieldAccess |
Encapsulates the logic for accessing member variables of classes.
|
| FieldMap |
Defines the basic characteristics of a map between field identifiers and
their associated BeanFields.
|
| FieldMapByName |
This class maintains a mapping from header names out of a CSV file to bean
fields.
|
| FieldMapByNameEntry |
|
| FieldMapByPositionEntry |
|
| HeaderColumnNameMappingStrategy |
Maps data to objects using the column names in the first row of the CSV file
as reference.
|
| HeaderIndex |
A bi-directional mapping between column positions and header names.
|
| HeaderNameBaseMappingStrategy |
This class serves as a location to collect code common to a mapping strategy
that maps header names to member variables.
|
| MappingStrategy |
The interface for the classes that handle translating between the columns in
the CSV file to an actual object.
|
| StatefulBeanToCsv |
This class writes beans out in CSV format to a Writer,
keeping state information and making an intelligent guess at the mapping
strategy to be applied.
|
| StatefulBeanToCsvBuilder |
This is a builder for StatefulBeanToCsv, allowing one to set all parameters
necessary for writing a CSV file.
|