Uses of Class
com.opencsv.exceptions.CsvFieldAssignmentException
-
Packages that use CsvFieldAssignmentException 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.com.opencsv.exceptions This package contains all of the exceptions specific to opencsv. -
-
Uses of CsvFieldAssignmentException in com.opencsv.bean
Methods in com.opencsv.bean that throw CsvFieldAssignmentException Modifier and Type Method Description T
AbstractMappingStrategy. populateNewBean(java.lang.String[] line)
T
MappingStrategy. populateNewBean(java.lang.String[] line)
Takes a line of input from a CSV file and creates a bean out of it.java.lang.String[]
AbstractMappingStrategy. transmuteBean(T bean)
java.lang.String[]
MappingStrategy. transmuteBean(T bean)
Transmutes a bean instance into an array ofString
s to be written to a CSV file. -
Uses of CsvFieldAssignmentException in com.opencsv.bean.concurrent
Methods in com.opencsv.bean.concurrent that throw CsvFieldAssignmentException Modifier and Type Method Description private T
ProcessCsvLine. processLine()
Creates a single object from a line from the CSV file. -
Uses of CsvFieldAssignmentException in com.opencsv.exceptions
Subclasses of CsvFieldAssignmentException 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 aLineValidator
orLineValidatorAggregator
when a single line is invalid.Fields in com.opencsv.exceptions with type parameters of type CsvFieldAssignmentException Modifier and Type Field Description private java.util.List<CsvFieldAssignmentException>
CsvChainedException. exceptionChain
Methods in com.opencsv.exceptions that return CsvFieldAssignmentException Modifier and Type Method Description CsvFieldAssignmentException
CsvChainedException. getFirstException()
Convenience method to return the first exception from the exception chain.Methods in com.opencsv.exceptions that return types with arguments of type CsvFieldAssignmentException Modifier and Type Method Description java.util.List<CsvFieldAssignmentException>
CsvChainedException. getExceptionChain()
Methods in com.opencsv.exceptions with parameters of type CsvFieldAssignmentException Modifier and Type Method Description void
CsvChainedException. add(CsvFieldAssignmentException csve)
Add an exception to the chain of collections.Constructors in com.opencsv.exceptions with parameters of type CsvFieldAssignmentException Constructor Description CsvChainedException(CsvFieldAssignmentException csve)
Constructor.
-