Uses of Class
com.opencsv.exceptions.CsvException
-
Packages that use CsvException Package Description com.opencsv A very simple CSV parser for Java released under a commercial-friendly license.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.com.opencsv.exceptions This package contains all of the exceptions specific to opencsv. -
-
Uses of CsvException in com.opencsv
Methods in com.opencsv that throw CsvException Modifier and Type Method Description java.util.List<java.lang.String[]>
CSVReader. readAll()
Reads the entire file into a List with each element being a String[] of tokens. -
Uses of CsvException in com.opencsv.bean
Methods in com.opencsv.bean that return types with arguments of type CsvException Modifier and Type Method Description java.util.List<CsvException>
CsvToBean. getCapturedExceptions()
Returns the list of all exceptions that would have been thrown during the import, but were suppressed by settingCsvToBean.throwExceptions
tofalse
.java.util.List<CsvException>
StatefulBeanToCsv. getCapturedExceptions()
Any exceptions captured during writing of beans to a CSV destination can be retrieved through this method. -
Uses of CsvException in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent with type parameters of type CsvException Modifier and Type Field Description protected java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
IntolerantThreadPoolExecutor. thrownExceptionsQueue
A queue of exceptions thrown by threads during processing.protected java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
IntolerantThreadPoolExecutor. thrownExceptionsQueue
A queue of exceptions thrown by threads during processing. -
Uses of CsvException in com.opencsv.exceptions
Subclasses of CsvException in com.opencsv.exceptions Modifier and Type Class Description class
CsvConstraintViolationException
This exception is thrown when logical connections between data fields would be violated by the imported data.class
CsvDataTypeMismatchException
This exception should be thrown when the provided string value for conversion cannot be converted to the required type of the destination field.class
CsvRequiredFieldEmptyException
This exception should be thrown when a field marked as required is empty in the CSV file.class
CsvValidationException
Exception thrown by a LineValidator or LineValidatorAggregator when a single line is invalid.
-