T
- The type of bean being verifiedpublic interface BeanVerifier<T>
CsvToBeanFilter
.
Implementations of this interface must be thread-safe.
Modifier and Type | Method and Description |
---|---|
boolean |
verifyBean(T bean)
Verifies and optionally filters the bean that has been created.
|
boolean verifyBean(T bean) throws CsvConstraintViolationException
CsvConstraintViolationException
if the bean
created is in some way inconsistent and thus unacceptable. If, however,
the bean is essentially correct, but for some logical reason should be
filtered silently out, the method should return false
.bean
- The bean to be verifiedtrue
if the bean should be passed on to further
processing, false
if it should be silently filteredCsvConstraintViolationException
- If the bean that has been
created is in some way logically inconsistent or impossible. This
exception will be propagated up the call stack and, depending on how
opencsv is being used, may simply be reported, or may halt execution.Copyright © 2005–2023. All rights reserved.