Uses of Interface
com.opencsv.bean.BeanVerifier
Packages that use BeanVerifier
Package
Description
A bean binding interface for use with opencsv.
This package collects all classes necessary for the parallel processing of
beans.
-
Uses of BeanVerifier in com.opencsv.bean
Fields in com.opencsv.bean with type parameters of type BeanVerifierModifier and TypeFieldDescriptionprivate List
<BeanVerifier<T>> CsvToBean.verifiers
All verifiers that should be run on beans after creation but before returning them to the caller.private final List
<BeanVerifier<T>> CsvToBeanBuilder.verifiers
Methods in com.opencsv.bean with parameters of type BeanVerifierModifier and TypeMethodDescriptionCsvToBeanBuilder.withVerifier
(BeanVerifier<T> verifier) Adds aBeanVerifier
to the list of verifiers to run on all beans created.Method parameters in com.opencsv.bean with type arguments of type BeanVerifierModifier and TypeMethodDescriptionvoid
CsvToBean.setVerifiers
(List<BeanVerifier<T>> verifiers) Sets the list of verifiers to be run on all beans after creation. -
Uses of BeanVerifier in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent with type parameters of type BeanVerifierModifier and TypeFieldDescriptionprivate final List
<BeanVerifier<T>> CompleteFileReader.verifiers
Verifiers to be applied to the beans created.private final List
<BeanVerifier<T>> ProcessCsvLine.verifiers
Method parameters in com.opencsv.bean.concurrent with type arguments of type BeanVerifierModifier 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.Constructor parameters in com.opencsv.bean.concurrent with type arguments of type BeanVerifierModifierConstructorDescriptionCompleteFileReader
(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.