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 TAbstractMappingStrategy. populateNewBean(java.lang.String[] line)TMappingStrategy. 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 ofStrings 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 TProcessCsvLine. 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 classCsvConstraintViolationExceptionThis exception is thrown when logical connections between data fields would be violated by the imported data.classCsvDataTypeMismatchExceptionThis exception should be thrown when the provided string value for conversion cannot be converted to the required type of the destination field.classCsvRequiredFieldEmptyExceptionThis exception should be thrown when a field marked as required is empty in the CSV file.classCsvValidationExceptionException thrown by aLineValidatororLineValidatorAggregatorwhen 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. exceptionChainMethods in com.opencsv.exceptions that return CsvFieldAssignmentException Modifier and Type Method Description CsvFieldAssignmentExceptionCsvChainedException. 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 voidCsvChainedException. 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.
-