Uses of Class
com.opengamma.strata.collect.io.CsvIterator
-
Packages that use CsvIterator Package Description com.opengamma.strata.collect.io Provides utilities for the management of input and output. -
-
Uses of CsvIterator in com.opengamma.strata.collect.io
Methods in com.opengamma.strata.collect.io that return CsvIterator Modifier and Type Method Description static CsvIterator
CsvIterator. of(CharSource source, boolean headerRow)
Parses the specified source as a CSV file, using a comma as the separator.static CsvIterator
CsvIterator. of(CharSource source, boolean headerRow, char separator)
Parses the specified source as a CSV file where the separator is specified and might not be a comma.static CsvIterator
CsvIterator. of(Reader reader, boolean headerRow)
Parses the specified reader as a CSV file, using a comma as the separator.static CsvIterator
CsvIterator. of(Reader reader, boolean headerRow, char separator)
Parses the specified reader as a CSV file where the separator is specified and might not be a comma.Methods in com.opengamma.strata.collect.io with parameters of type CsvIterator Modifier and Type Method Description void
CsvOutput. writeCsvIterator(CsvIterator iterator, boolean alwaysQuote)
Writes the output of the providedCsvIterator
to the underlying.
-