| Package | Description |
|---|---|
| com.opengamma.strata.collect.io |
Provides utilities for the management of input and output.
|
| Modifier and Type | Method and Description |
|---|---|
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.withHeaders(List<String> headers,
boolean alwaysQuote)
Write a header line to the underlying, returning an instance that allows
cells to be written by header name.
|
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeCell(String header,
double value)
Writes a single cell by header, with the cell only being output when
writeNewLine() is called. |
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeCell(String header,
long value)
Writes a single cell by header, with the cell only being output when
writeNewLine() is called. |
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeCell(String header,
Object value)
Writes a single cell by header, with the cell only being output when
writeNewLine() is called. |
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeCell(String header,
String value)
Writes a single cell by header, with the cell only being output when
writeNewLine() is called. |
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeCells(Map<String,String> valueMap)
Writes a map of cells to the output, with the cell only being output when
writeNewLine() is called. |
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeLine(Map<String,String> valueMap)
Writes a row to the output, specifying each value by the header.
|
CsvOutput.CsvRowOutputWithHeaders |
CsvOutput.CsvRowOutputWithHeaders.writeNewLine()
Writes a new line character.
|
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.