| Package | Description |
|---|---|
| com.opengamma.strata.collect.io |
Provides utilities for the management of input and output.
|
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CsvOutput.writeCsvIterator(CsvIterator iterator,
boolean alwaysQuote)
Writes the output of the provided
CsvIterator to the underlying. |
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.