Package nablarch.common.databind.csv
Class MapCsvMapper
java.lang.Object
nablarch.common.databind.csv.ObjectCsvMapperSupport<Map<String,?>>
 
nablarch.common.databind.csv.MapCsvMapper
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- ObjectMapper<Map<String,- ?>> 
MapをCSVにマッピングするのをサポートするクラス。
- 
Field SummaryFields inherited from class nablarch.common.databind.csv.ObjectCsvMapperSupportconfig
- 
Constructor SummaryConstructorsConstructorDescriptionMapCsvMapper(CsvDataBindConfig config, OutputStream outputStream) コンストラクタ。MapCsvMapper(CsvDataBindConfig config, Writer writer) コンストラクタ。
- 
Method SummaryModifier and TypeMethodDescriptionObject[]convertValues(Map<String, ?> object) JavaオブジェクトをCSVに出力するためのObject配列に変換する。Methods inherited from class nablarch.common.databind.csv.ObjectCsvMapperSupportclose, read, write, writeHeader
- 
Constructor Details- 
MapCsvMapperコンストラクタ。- Parameters:
- config- フォーマット定義
- outputStream- 出力リソース
 
- 
MapCsvMapperコンストラクタ。- Parameters:
- config- フォーマット定義
- writer- 出力リソース
 
 
- 
- 
Method Details- 
convertValuesDescription copied from class:ObjectCsvMapperSupportJavaオブジェクトをCSVに出力するためのObject配列に変換する。 変換するObject配列は、CSVファイルに出力する要素順に並べる必要がある。- Specified by:
- convertValuesin class- ObjectCsvMapperSupport<Map<String,- ?>> 
- Parameters:
- object- Javaオブジェクト
- Returns:
- CSV出力用のObject配列
 
 
-