Uses of Class
org.apache.commons.csv.CSVRecord
-
-
Uses of CSVRecord in org.apache.commons.csv
Fields in org.apache.commons.csv declared as CSVRecord Modifier and Type Field Description private CSVRecord
CSVParser.CSVRecordIterator. current
Methods in org.apache.commons.csv that return CSVRecord Modifier and Type Method Description private CSVRecord
CSVParser.CSVRecordIterator. getNextRecord()
Gets the next record or null at the end of stream or max rows read.CSVRecord
CSVParser.CSVRecordIterator. next()
(package private) CSVRecord
CSVParser. nextRecord()
Parses the next record from the current point in the stream.Methods in org.apache.commons.csv that return types with arguments of type CSVRecord Modifier and Type Method Description java.util.List<CSVRecord>
CSVParser. getRecords()
Parses the CSV input according to the given format and returns the content as a list ofCSVRecords
.java.util.Iterator<CSVRecord>
CSVParser. iterator()
Returns the record iterator.java.util.stream.Stream<CSVRecord>
CSVParser. stream()
Returns a sequentialStream
with this collection as its source.
-