Uses of Interface
com.opencsv.ICSVParser
Packages that use ICSVParser
Package
Description
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 ICSVParserModifier and TypeClassDescriptionclass
The purpose of the AbstractCSVParser is to consolidate the duplicate code amongst the parsers.class
A very simple CSV parser released under a commercial-friendly license.class
This Parser is meant to parse according to the RFC4180 specification.Fields in com.opencsv declared as ICSVParserModifier and TypeFieldDescriptionprotected ICSVParser
CSVReaderBaseBuilder.icsvParser
protected final ICSVParser
CSVParserWriter.parser
protected ICSVParser
CSVReader.parser
private ICSVParser
CSVWriterBuilder.parser
Methods in com.opencsv that return ICSVParserModifier and TypeMethodDescriptionprotected ICSVParser
CSVReaderBaseBuilder.getCsvParser()
Used by unit tests.protected ICSVParser
CSVReaderBaseBuilder.getOrCreateCsvParser()
Creates a newICSVParser
if the class doesn't already hold one.CSVReader.getParser()
Methods in com.opencsv with parameters of type ICSVParserModifier and TypeMethodDescriptionCSVReaderBuilder.withCSVParser
(ICSVParser icsvParser) Sets the parser to use to parse the input.CSVReaderHeaderAwareBuilder.withCSVParser
(ICSVParser icsvParser) Sets the parser to use to parse the input.CSVWriterBuilder.withParser
(ICSVParser parser) Sets the parser that the ICSVWriter will be using.Constructors in com.opencsv with parameters of type ICSVParserModifierConstructorDescriptionCSVParserWriter
(Writer writer, ICSVParser parser, String lineEnd) Constructor for the CSVParserWriter.(package private)
CSVReader
(Reader reader, int line, ICSVParser icsvParser, boolean keepCR, boolean verifyReader, int multilineLimit, Locale errorLocale, LineValidatorAggregator lineValidatorAggregator, RowValidatorAggregator rowValidatorAggregator, RowProcessor rowProcessor) Constructs CSVReader with supplied CSVParser.(package private)
CSVReaderHeaderAware
(Reader reader, int skipLines, ICSVParser parser, boolean keepCR, boolean verifyReader, int multilineLimit, Locale errorLocale, LineValidatorAggregator lineValidatorAggregator, RowValidatorAggregator rowValidatorAggregator, RowProcessor rowProcessor) Supports non-deprecated constructor from the parent class.