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
Fields in com.opencsv.bean declared as CsvToBeanFilter Modifier and Type Field Description private CsvToBeanFilterCsvToBean. filterThe filter this class will use on the beans it reads.private CsvToBeanFilterCsvToBeanBuilder. filterMethods in com.opencsv.bean with parameters of type CsvToBeanFilter Modifier and Type Method Description voidCsvToBean. 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
Fields in com.opencsv.bean.concurrent declared as CsvToBeanFilter Modifier and Type Field Description private CsvToBeanFilterCompleteFileReader. filterFilter to be applied to the input.private CsvToBeanFilterProcessCsvLine. filterMethods in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilter Modifier and Type Method Description voidLineExecutor. submitLine(long lineNumber, MappingStrategy<? extends T> mapper, CsvToBeanFilter filter, java.util.List<BeanVerifier<T>> verifiers, java.lang.String[] line, CsvExceptionHandler exceptionHandler)Submit one record for conversion to a bean.Constructors in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilter Constructor Description CompleteFileReader(CSVReader csvReader, CsvToBeanFilter filter, boolean ignoreEmptyLines, MappingStrategy<? extends T> mappingStrategy, CsvExceptionHandler exceptionHandler, java.util.List<BeanVerifier<T>> verifiers)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, java.util.SortedSet<java.lang.Long> expectedRecords, CsvExceptionHandler exceptionHandler)The only constructor for creating a bean out of a line of input.
-