Uses of Interface
com.opencsv.bean.CsvToBeanFilter
Packages that use CsvToBeanFilter
Package
Description
A bean binding interface for use with opencsv.
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 CsvToBeanFilterModifier and TypeFieldDescriptionprivate CsvToBeanFilterCsvToBean.filterThe filter this class will use on the beans it reads.private CsvToBeanFilterCsvToBeanBuilder.filterMethods in com.opencsv.bean with parameters of type CsvToBeanFilterModifier and TypeMethodDescriptionvoidCsvToBean.setFilter(CsvToBeanFilter filter) Sets a filter to selectively remove some lines of input before they become beans.CsvToBeanBuilder.withFilter(CsvToBeanFilter filter) -
Uses of CsvToBeanFilter in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent declared as CsvToBeanFilterModifier and TypeFieldDescriptionprivate final CsvToBeanFilterCompleteFileReader.filterFilter to be applied to the input.private final CsvToBeanFilterProcessCsvLine.filterMethods in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilterModifier and TypeMethodDescriptionvoidLineExecutor.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.Constructors in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilterModifierConstructorDescriptionCompleteFileReader(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.