Uses of Class
com.opengamma.strata.collect.io.CsvOutput.CsvRowOutputWithHeaders
-
Packages that use CsvOutput.CsvRowOutputWithHeaders Package Description com.opengamma.strata.collect.io Provides utilities for the management of input and output.com.opengamma.strata.loader.csv Loader that reads market data from CSV files. -
-
Uses of CsvOutput.CsvRowOutputWithHeaders in com.opengamma.strata.collect.io
Methods in com.opengamma.strata.collect.io that return CsvOutput.CsvRowOutputWithHeaders Modifier and Type Method 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 whenwriteNewLine()
is called.CsvOutput.CsvRowOutputWithHeaders
CsvOutput.CsvRowOutputWithHeaders. writeCell(String header, long value)
Writes a single cell by header, with the cell only being output whenwriteNewLine()
is called.CsvOutput.CsvRowOutputWithHeaders
CsvOutput.CsvRowOutputWithHeaders. writeCell(String header, Object value)
Writes a single cell by header, with the cell only being output whenwriteNewLine()
is called.CsvOutput.CsvRowOutputWithHeaders
CsvOutput.CsvRowOutputWithHeaders. writeCell(String header, String value)
Writes a single cell by header, with the cell only being output whenwriteNewLine()
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 whenwriteNewLine()
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. -
Uses of CsvOutput.CsvRowOutputWithHeaders in com.opengamma.strata.loader.csv
Methods in com.opengamma.strata.loader.csv with parameters of type CsvOutput.CsvRowOutputWithHeaders Modifier and Type Method Description static void
CsvWriterUtils. writeAdjustablePayment(CsvOutput.CsvRowOutputWithHeaders csv, AdjustablePayment adjustablePayment, String amountField, String currencyField, String directionField, String dateField, String dateConventionField, String dateCalendarField)
Writes an AdjustablePayment object to CSVstatic void
CsvWriterUtils. writeBarrier(CsvOutput.CsvRowOutputWithHeaders csv, Barrier barrier, LocalDate obsDate)
Writes a Barrier object to CSVvoid
FxNdfTradeCsvPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, FxNdfTrade trade)
void
FxSingleBarrierOptionTradeCsvPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, FxSingleBarrierOptionTrade trade)
void
GenericSecurityTradeCsvPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, GenericSecurityTrade trade)
void
IborCapFloorTradeCsvPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, IborCapFloorTrade trade)
void
SecurityTradeCsvPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, SecurityQuantityTrade trade)
void
TradeCsvWriterPlugin. writeCsv(CsvOutput.CsvRowOutputWithHeaders csv, T trade)
Writes the CSV for the specified trade.static void
CsvWriterUtils. writeCurrencyAmount(CsvOutput.CsvRowOutputWithHeaders csv, CurrencyAmount ccyAmount, String amountField, String currencyField, String directionField)
Writes a currency amount using the provided fieldsstatic void
CsvWriterUtils. writeFxSingle(CsvOutput.CsvRowOutputWithHeaders csv, String prefix, FxSingle product)
Write the FxSingle to CSVstatic void
CsvWriterUtils. writeFxVanillaOption(CsvOutput.CsvRowOutputWithHeaders csv, FxVanillaOption product)
Write a FxVanillaOption to CSVstatic void
CsvWriterUtils. writePremiumFields(CsvOutput.CsvRowOutputWithHeaders csv, AdjustablePayment premium)
Writes an AdjustablePayment object to CSVstatic void
CsvWriterUtils. writeSecurityQuantityTrade(CsvOutput.CsvRowOutputWithHeaders csv, SecurityQuantityTrade trade)
Write a SecurityQuantityTrade to CSVstatic void
CsvWriterUtils. writeSwap(CsvOutput.CsvRowOutputWithHeaders csv, Swap product)
Write a Swap to CSVstatic void
CsvWriterUtils. writeZonedDateTime(CsvOutput.CsvRowOutputWithHeaders csv, ZonedDateTime zonedDateTime, String dateField, String timeField, String zoneField)
Writes a zoned date time using the provided field
-