Package | Description |
---|---|
com.opencsv.bean |
A bean binding interface for use with opencsv.
|
com.opencsv.bean.concurrent |
This package collects all classes necessary for the parallel processing of
beans.
|
Modifier and Type | Method and Description |
---|---|
CsvToBeanBuilder<T> |
CsvToBeanBuilder.withVerifier(BeanVerifier<T> verifier)
Adds a
BeanVerifier to the list of verifiers to run on all
beans created. |
Modifier and Type | Method and Description |
---|---|
void |
CsvToBean.setVerifiers(List<BeanVerifier<T>> verifiers)
Sets the list of verifiers to be run on all beans after creation.
|
Modifier and Type | Method and Description |
---|---|
void |
LineExecutor.submitLine(long lineNumber,
MappingStrategy<? extends T> mapper,
CsvToBeanFilter filter,
List<BeanVerifier<T>> verifiers,
String[] line,
CsvExceptionHandler exceptionHandler)
Submit one record for conversion to a bean.
|
Constructor and Description |
---|
CompleteFileReader(CSVReader csvReader,
CsvToBeanFilter filter,
boolean ignoreEmptyLines,
MappingStrategy<? extends T> mappingStrategy,
CsvExceptionHandler exceptionHandler,
List<BeanVerifier<T>> verifiers) |
ProcessCsvLine(long lineNumber,
MappingStrategy<? extends T> mapper,
CsvToBeanFilter filter,
List<BeanVerifier<T>> verifiers,
String[] line,
BlockingQueue<OrderedObject<T>> resultantBeanQueue,
BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue,
SortedSet<Long> expectedRecords,
CsvExceptionHandler exceptionHandler)
The only constructor for creating a bean out of a line of input.
|
Copyright © 2005–2023. All rights reserved.