| Package | Description |
|---|---|
| com.opengamma.strata.collect.io |
Provides utilities for the management of input and output.
|
| Modifier and Type | Method and Description |
|---|---|
static CsvOutput |
CsvOutput.safe(Appendable underlying)
Creates an instance, using the system default line separator and using a comma separator.
|
static CsvOutput |
CsvOutput.safe(Appendable underlying,
String newLine)
Creates an instance, allowing the new line character to be controlled and using a comma separator.
|
static CsvOutput |
CsvOutput.safe(Appendable underlying,
String newLine,
String separator)
Creates an instance, allowing the new line character to be controlled, specifying the separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying)
Creates an instance, using the system default line separator and using a comma separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying,
String newLine)
Creates an instance, allowing the new line character to be controlled and using a comma separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying,
String newLine,
String separator)
Creates an instance, allowing the new line character to be controlled, specifying the separator.
|
CsvOutput |
CsvOutput.writeCell(String cell)
Writes a single cell to the current line, only quoting if needed.
|
CsvOutput |
CsvOutput.writeCell(String cell,
boolean alwaysQuote)
Writes a single cell to the current line.
|
CsvOutput |
CsvOutput.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.