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 CSVReaderBuilderCSVReaderBuilder. withRowValidator(RowValidator rowValidator)Adds aRowValidatorto theCSVReader.CSVReaderHeaderAwareBuilderCSVReaderHeaderAwareBuilder. withRowValidator(RowValidator rowValidator)Adds aRowValidatorto theCSVReaderHeaderAware. -
Uses of RowValidator in com.opencsv.validators
Classes in com.opencsv.validators that implement RowValidator Modifier and Type Class Description classRowFunctionValidatorThis validator is best used to validate a specific property of the row - either about a specific element or information about the array itself.classRowMustHaveSameNumberOfColumnsAsFirstRowValidatorThis 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. validatorsMethods in com.opencsv.validators with parameters of type RowValidator Modifier and Type Method Description voidRowValidatorAggregator. 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) voidRowValidatorAggregator. setValidators(java.util.List<RowValidator> validators)Setter created for unit test.
-