Uses of Interface
com.opencsv.ICSVWriter
Packages that use ICSVWriter
Package
Description
A very simple CSV parser for Java released under a commercial-friendly license.
A bean binding interface for use with opencsv.
-
Uses of ICSVWriter in com.opencsv
Classes in com.opencsv that implement ICSVWriterModifier and TypeClassDescriptionclass
The AbstractCSVWriter was created to prevent duplication of code between the CSVWriter and the CSVParserWriter classes.class
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
A very simple CSV writer released under a commercial-friendly license.Methods in com.opencsv that return ICSVWriterModifier and TypeMethodDescriptionCSVWriterBuilder.build()
Creates the CSVWriter.private ICSVWriter
CSVWriterBuilder.createCSVParserWriter()
private ICSVWriter
CSVWriterBuilder.createCSVWriter()
-
Uses of ICSVWriter in com.opencsv.bean
Fields in com.opencsv.bean declared as ICSVWriterModifier and TypeFieldDescriptionprivate ICSVWriter
StatefulBeanToCsv.csvwriter
private final ICSVWriter
StatefulBeanToCsvBuilder.csvWriter
Constructors in com.opencsv.bean with parameters of type ICSVWriterModifierConstructorDescriptionStatefulBeanToCsv
(MappingStrategy<T> mappingStrategy, CsvExceptionHandler exceptionHandler, boolean applyQuotesToAll, ICSVWriter csvWriter, org.apache.commons.collections4.MultiValuedMap<Class<?>, Field> ignoredFields, String profile) 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.