Uses of Interface
com.opencsv.bean.CsvToBeanFilter
-
Packages that use CsvToBeanFilter 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. -
-
Uses of CsvToBeanFilter in com.opencsv.bean
Methods in com.opencsv.bean with parameters of type CsvToBeanFilter Modifier and Type Method Description void
CsvToBean. setFilter(CsvToBeanFilter filter)
Sets a filter to selectively remove some lines of input before they become beans.CsvToBeanBuilder<T>
CsvToBeanBuilder. withFilter(CsvToBeanFilter filter)
-
Uses of CsvToBeanFilter in com.opencsv.bean.concurrent
Methods in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilter Modifier and Type Method Description void
LineExecutor. submitLine(long lineNumber, MappingStrategy<? extends T> mapper, CsvToBeanFilter filter, java.util.List<BeanVerifier<T>> verifiers, java.lang.String[] line, boolean throwExceptions)
Submit one record for conversion to a bean.Constructors in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilter Constructor Description ProcessCsvLine(long lineNumber, MappingStrategy<? extends T> mapper, CsvToBeanFilter filter, java.util.List<BeanVerifier<T>> verifiers, java.lang.String[] line, java.util.concurrent.BlockingQueue<OrderedObject<T>> resultantBeanQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, boolean throwExceptions)
The only constructor for creating a bean out of a line of input.
-