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 class
AbstractCSVWriter
The AbstractCSVWriter was created to prevent duplication of code between the CSVWriter and the CSVParserWriter classes.class
CSVParserWriter
The 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.class
CSVWriter
A very simple CSV writer released under a commercial-friendly license.Methods in com.opencsv that return ICSVWriter Modifier and Type Method Description ICSVWriter
CSVWriterBuilder. build()
Creates the CSVWriter. -
Uses of ICSVWriter in com.opencsv.bean
Constructors in com.opencsv.bean with parameters of type ICSVWriter Constructor Description StatefulBeanToCsv(MappingStrategy<T> mappingStrategy, boolean throwExceptions, boolean applyQuotesToAll, ICSVWriter csvWriter, org.apache.commons.collections4.MultiValuedMap<java.lang.Class<?>,java.lang.reflect.Field> ignoredFields)
Constructor used to allow building of aStatefulBeanToCsv
with a user-suppliedICSVWriter
class.StatefulBeanToCsvBuilder(ICSVWriter icsvWriter)
Being stateful the writer is required by the builder at the start and not added in later.
-