Uses of Interface
org.supercsv.io.ICsvReader

Packages that use ICsvReader
Package
Description
Provides the various readers and writers used to read/write Strings, Maps, or Objects.
  • Uses of ICsvReader in org.supercsv.io

    Subinterfaces of ICsvReader in org.supercsv.io
    Modifier and Type
    Interface
    Description
    interface 
    Interface for CSV readers reading into objects/beans.
    interface 
    Interface for readers that read into Lists.
    interface 
    The interface for MapReaders, which read each CSV row into a Map.
    Classes in org.supercsv.io that implement ICsvReader
    Modifier and Type
    Class
    Description
    class 
    Defines the standard behaviour of a CSV reader.
    class 
    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).
    class 
    CsvListReader is a simple reader that reads a row from a CSV file into a List of Strings.
    class 
    CsvMapReader reads each CSV row into a Map with the column name as the map key, and the column value as the map value.