Uses of Interface
com.opencsv.ICSVParser
-
Packages that use ICSVParser Package Description com.opencsv A very simple CSV parser for Java released under a commercial-friendly license. -
-
Uses of ICSVParser in com.opencsv
Classes in com.opencsv that implement ICSVParser Modifier and Type Class Description class
AbstractCSVParser
The purpose of the AbstractCSVParser is to consolidate the duplicate code amongst the parsers.class
CSVParser
A very simple CSV parser released under a commercial-friendly license.class
RFC4180Parser
This Parser is meant to parse according to the RFC4180 specification.Fields in com.opencsv declared as ICSVParser Modifier and Type Field Description protected ICSVParser
CSVParserWriter. parser
protected ICSVParser
CSVReader. parser
Methods in com.opencsv that return ICSVParser Modifier and Type Method Description protected ICSVParser
CSVReaderBuilder. getCsvParser()
Used by unit tests.protected ICSVParser
CSVReaderBuilder. getOrCreateCsvParser()
Creates a newICSVParser
if the class does't already hold one.ICSVParser
CSVReader. getParser()
Methods in com.opencsv with parameters of type ICSVParser Modifier and Type Method Description CSVReaderBuilder
CSVReaderBuilder. withCSVParser(ICSVParser icsvParser)
Sets the parser to use to parse the input.CSVWriterBuilder
CSVWriterBuilder. withParser(ICSVParser parser)
Sets the parser that the ICSVWriter will be using.Constructors in com.opencsv with parameters of type ICSVParser Constructor Description CSVParserWriter(java.io.Writer writer, ICSVParser parser, java.lang.String lineEnd)
Constructor for the CSVParserWriter.
-