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 CsvToBeanFilter
CsvToBean.filter
The filter this class will use on the beans it reads.private CsvToBeanFilter
CsvToBeanBuilder.filter
Methods in com.opencsv.bean with parameters of type CsvToBeanFilterModifier and TypeMethodDescriptionvoid
CsvToBean.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 CsvToBeanFilter
CompleteFileReader.filter
Filter to be applied to the input.private final CsvToBeanFilter
ProcessCsvLine.filter
Methods in com.opencsv.bean.concurrent with parameters of type CsvToBeanFilterModifier and TypeMethodDescriptionvoid
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.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.