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 classAbstractCSVParserThe purpose of the AbstractCSVParser is to consolidate the duplicate code amongst the parsers.classCSVParserA very simple CSV parser released under a commercial-friendly license.classRFC4180ParserThis Parser is meant to parse according to the RFC4180 specification.Fields in com.opencsv declared as ICSVParser Modifier and Type Field Description protected ICSVParserCSVReaderBaseBuilder. icsvParserprotected ICSVParserCSVParserWriter. parserprotected ICSVParserCSVReader. parserprivate ICSVParserCSVWriterBuilder. parserMethods in com.opencsv that return ICSVParser Modifier and Type Method Description protected ICSVParserCSVReaderBaseBuilder. getCsvParser()Used by unit tests.protected ICSVParserCSVReaderBaseBuilder. getOrCreateCsvParser()Creates a newICSVParserif the class doesn't already hold one.ICSVParserCSVReader. getParser()Methods in com.opencsv with parameters of type ICSVParser Modifier and Type Method Description CSVReaderBuilderCSVReaderBuilder. withCSVParser(ICSVParser icsvParser)Sets the parser to use to parse the input.CSVReaderHeaderAwareBuilderCSVReaderHeaderAwareBuilder. withCSVParser(ICSVParser icsvParser)Sets the parser to use to parse the input.CSVWriterBuilderCSVWriterBuilder. 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.CSVReader(java.io.Reader reader, int line, ICSVParser icsvParser, boolean keepCR, boolean verifyReader, int multilineLimit, java.util.Locale errorLocale, LineValidatorAggregator lineValidatorAggregator, RowValidatorAggregator rowValidatorAggregator, RowProcessor rowProcessor)Constructs CSVReader with supplied CSVParser.CSVReaderHeaderAware(java.io.Reader reader, int skipLines, ICSVParser parser, boolean keepCR, boolean verifyReader, int multilineLimit, java.util.Locale errorLocale, LineValidatorAggregator lineValidatorAggregator, RowValidatorAggregator rowValidatorAggregator, RowProcessor rowProcessor)Supports non-deprecated constructor from the parent class.
-