Uses of Interface
com.opencsv.ICSVWriter
-
Packages that use ICSVWriter 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. -
-
Uses of ICSVWriter in com.opencsv
Classes in com.opencsv that implement ICSVWriter Modifier and Type Class Description classAbstractCSVWriterThe AbstractCSVWriter was created to prevent duplication of code between the CSVWriter and the CSVParserWriter classes.classCSVParserWriterThe CSVParserWriter is a replacement for the CSVWriter that allows you to pass in a ICSVParser to handle the task of converting a string array to a line of CSV data.classCSVWriterA very simple CSV writer released under a commercial-friendly license.Methods in com.opencsv that return ICSVWriter Modifier and Type Method Description ICSVWriterCSVWriterBuilder. build()Creates the CSVWriter.private ICSVWriterCSVWriterBuilder. createCSVParserWriter()private ICSVWriterCSVWriterBuilder. createCSVWriter() -
Uses of ICSVWriter in com.opencsv.bean
Fields in com.opencsv.bean declared as ICSVWriter Modifier and Type Field Description private ICSVWriterStatefulBeanToCsv. csvwriterprivate ICSVWriterStatefulBeanToCsvBuilder. csvWriterConstructors in com.opencsv.bean with parameters of type ICSVWriter Constructor Description StatefulBeanToCsv(MappingStrategy<T> mappingStrategy, CsvExceptionHandler exceptionHandler, boolean applyQuotesToAll, ICSVWriter csvWriter, org.apache.commons.collections4.MultiValuedMap<java.lang.Class<?>,java.lang.reflect.Field> ignoredFields, java.lang.String profile)Constructor used to allow building of aStatefulBeanToCsvwith a user-suppliedICSVWriterclass.StatefulBeanToCsvBuilder(ICSVWriter icsvWriter)Being stateful the writer is required by the builder at the start and not added in later.
-