Uses of Interface
com.opencsv.bean.BeanVerifier
-
Packages that use BeanVerifier 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 BeanVerifier in com.opencsv.bean
Fields in com.opencsv.bean with type parameters of type BeanVerifier Modifier and Type Field Description private java.util.List<BeanVerifier<T>>
CsvToBean. verifiers
All verifiers that should be run on beans after creation but before returning them to the caller.private java.util.List<BeanVerifier<T>>
CsvToBeanBuilder. verifiers
Methods in com.opencsv.bean with parameters of type BeanVerifier Modifier and Type Method Description CsvToBeanBuilder<T>
CsvToBeanBuilder. 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 BeanVerifier Modifier and Type Method Description void
CsvToBean. setVerifiers(java.util.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 BeanVerifier Modifier and Type Field Description private java.util.List<BeanVerifier<T>>
CompleteFileReader. verifiers
Verifiers to be applied to the beans created.private java.util.List<BeanVerifier<T>>
ProcessCsvLine. verifiers
Method parameters in com.opencsv.bean.concurrent with type arguments of type BeanVerifier 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, CsvExceptionHandler exceptionHandler)
Submit one record for conversion to a bean.Constructor parameters in com.opencsv.bean.concurrent with type arguments of type BeanVerifier 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.
-