Package nablarch.common.databind.csv
Class CsvMapMapper
java.lang.Object
nablarch.common.databind.csv.CsvObjectMapperSupport<Map<String,?>>
nablarch.common.databind.csv.CsvMapMapper
- All Implemented Interfaces:
Closeable
,AutoCloseable
,ObjectMapper<Map<String,
?>>
CSVフォーマットと
Map
をマッピングするクラス。-
Field Summary
Fields inherited from class nablarch.common.databind.csv.CsvObjectMapperSupport
config, reader
-
Constructor Summary
ConstructorDescriptionCsvMapMapper
(CsvDataBindConfig config, InputStream inputStream) コンストラクタ。CsvMapMapper
(CsvDataBindConfig config, Reader reader) コンストラクタ。 -
Method Summary
Methods inherited from class nablarch.common.databind.csv.CsvObjectMapperSupport
close, read, readHeader, readLine, toBufferedReader, write
-
Constructor Details
-
CsvMapMapper
コンストラクタ。- Parameters:
config
- CSV用の設定情報inputStream
- 入力ストリーム
-
CsvMapMapper
コンストラクタ。- Parameters:
config
- CSV用の設定情報reader
- リーダー
-
-
Method Details
-
createObject
Description copied from class:CsvObjectMapperSupport
レコードをJavaObjectに変換する。- Specified by:
createObject
in classCsvObjectMapperSupport<Map<String,
?>> - Parameters:
record
- レコード- Returns:
- 変換したJavaObject
-