Uses of Interface
com.opencsv.validators.RowValidator
-
Packages that use RowValidator Package Description com.opencsv A very simple CSV parser for Java released under a commercial-friendly license.com.opencsv.validators -
-
Uses of RowValidator in com.opencsv
Methods in com.opencsv with parameters of type RowValidator Modifier and Type Method Description CSVReaderBuilder
CSVReaderBuilder. withRowValidator(RowValidator rowValidator)
Adds aRowValidator
to theCSVReader
.CSVReaderHeaderAwareBuilder
CSVReaderHeaderAwareBuilder. withRowValidator(RowValidator rowValidator)
Adds aRowValidator
to theCSVReaderHeaderAware
. -
Uses of RowValidator in com.opencsv.validators
Classes in com.opencsv.validators that implement RowValidator Modifier and Type Class Description class
RowFunctionValidator
This validator is best used to validate a specific property of the row - either about a specific element or information about the array itself.class
RowMustHaveSameNumberOfColumnsAsFirstRowValidator
This validator is used when the number of columns is not neccessarily known but must be consistent.Fields in com.opencsv.validators with type parameters of type RowValidator Modifier and Type Field Description private java.util.List<RowValidator>
RowValidatorAggregator. validators
Methods in com.opencsv.validators with parameters of type RowValidator Modifier and Type Method Description void
RowValidatorAggregator. addValidator(RowValidator validator)
Add a validator to the aggregator.Method parameters in com.opencsv.validators with type arguments of type RowValidator Modifier and Type Method Description (package private) void
RowValidatorAggregator. setValidators(java.util.List<RowValidator> validators)
Setter created for unit test.
-