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
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
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, boolean throwExceptions)
Submit one record for conversion to a bean.Constructor parameters in com.opencsv.bean.concurrent with type arguments of type BeanVerifier Constructor Description 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, boolean throwExceptions)
The only constructor for creating a bean out of a line of input.
-