Uses of Class
com.opencsv.CSVReader
Packages that use CSVReader
Package
Description
A very simple CSV parser for Java released under a commercial-friendly license.
A bean binding interface for use with opencsv.
This package collects all classes necessary for the parallel processing of
beans.
-
Uses of CSVReader in com.opencsv
Subclasses of CSVReader in com.opencsvModifier and TypeClassDescriptionclassHandy reader when there's insufficient motivation to use the bean binding but the header mapping is still desired.Subclasses with type arguments of type CSVReader in com.opencsvMethods in com.opencsv that return CSVReaderConstructors in com.opencsv with parameters of type CSVReader -
Uses of CSVReader in com.opencsv.bean
Methods in com.opencsv.bean with parameters of type CSVReaderModifier and TypeMethodDescriptionvoidColumnPositionMappingStrategy.captureHeader(CSVReader reader) There is no header per se for this mapping strategy, but this method checks the first line to determine how many fields are present and adjusts its field map accordingly.voidFuzzyMappingStrategy.captureHeader(CSVReader reader) voidHeaderNameBaseMappingStrategy.captureHeader(CSVReader reader) voidMappingStrategy.captureHeader(CSVReader reader) Implementation of this method can grab the header line before parsing begins to use to map columns to bean properties.voidCsvToBean.setCsvReader(CSVReader csvReader) Sets the reader to be used to read in the information from the CSV input.Constructors in com.opencsv.bean with parameters of type CSVReaderModifierConstructorDescriptionCsvToBeanBuilder(CSVReader csvReader) Constructor with the one parameter that is most definitely mandatory, and always will be. -
Uses of CSVReader in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent declared as CSVReaderConstructors in com.opencsv.bean.concurrent with parameters of type CSVReaderModifierConstructorDescriptionCompleteFileReader(CSVReader csvReader, CsvToBeanFilter filter, boolean ignoreEmptyLines, MappingStrategy<? extends T> mappingStrategy, CsvExceptionHandler exceptionHandler, List<BeanVerifier<T>> verifiers) SingleLineReader(CSVReader csvReader, boolean ignoreEmptyLines) The only constructor.