Uses of Class
nablarch.common.databind.csv.CsvDataBindConfig
-
Uses of CsvDataBindConfig in nablarch.common.databind.csv
Modifier and TypeFieldDescriptionprotected final CsvDataBindConfig
CsvObjectMapperSupport.config
CSV用の設定情報protected final CsvDataBindConfig
ObjectCsvMapperSupport.config
CSV用の設定情報static final CsvDataBindConfig
CsvDataBindConfig.DEFAULT
デフォルトのフォーマット定義static final CsvDataBindConfig
CsvDataBindConfig.EXCEL
EXCEL形式のCSVフォーマット定義static final CsvDataBindConfig
CsvDataBindConfig.RFC4180
RFC4180準拠のフォーマット定義static final CsvDataBindConfig
CsvDataBindConfig.TSV
タブ区切り(TSV)のフォーマット定義Modifier and TypeMethodDescriptionCsvDataBindConfig.withCharset
(String newCharset) 文字コードを設定する。CsvDataBindConfig.withCharset
(Charset newCharset) 文字コードを設定する。CsvDataBindConfig.withEmptyToNull
(boolean newEmptyToNull) 空フィールドをnullに置き換えるか否かを設定する。CsvDataBindConfig.withFieldSeparator
(char newFieldSeparator) 列区切り文字を設定する。CsvDataBindConfig.withHeaderTitles
(String... newHeaderTitles) ヘッダー行(タイトル行)に出力するタイトルを設定する。CsvDataBindConfig.withIgnoreEmptyLine()
空行を無視する。CsvDataBindConfig.withIgnoreEmptyLine
(boolean newOption) 空行を無視するか否かを設定する。CsvDataBindConfig.withLineSeparator
(String newLineSeparator) 改行文字を設定する。CsvDataBindConfig.withProperties
(String... newProperties) プロパティ名リストを設定する。CsvDataBindConfig.withQuote
(char newQuote) フィールド囲み文字を設定する。CsvDataBindConfig.withQuotedColumnNames
(String... fieldNames) フィールド囲み文字(getQuote()
で囲むフィールドのリストを設定する。CsvDataBindConfig.withQuoteMode
(CsvDataBindConfig.QuoteMode newQuoteMode) 出力時にフィールド囲み文字で囲むフィールドを設定する。CsvDataBindConfig.withRequiredHeader()
ヘッダー行(タイトル行)を必須に設定する。CsvDataBindConfig.withRequiredHeader
(boolean newOption) ヘッダー行(タイトル行)を必須とするか否かを設定する。ModifierConstructorDescriptionBeanCsvMapper
(Class<T> clazz, CsvDataBindConfig config, OutputStream outputStream) コンストラクタ。BeanCsvMapper
(Class<T> clazz, CsvDataBindConfig config, Writer writer) コンストラクタ。CsvBeanMapper
(Class<T> clazz, CsvDataBindConfig config, InputStream inputStream) コンストラクタ。CsvBeanMapper
(Class<T> clazz, CsvDataBindConfig config, Reader reader) コンストラクタ。CsvDataReader
(BufferedReader bufferedReader, CsvDataBindConfig format) コンストラクタCsvDataWriter
(BufferedWriter writer, CsvDataBindConfig config, String[] properties) 指定されたフォーマット定義を持つCsvLineFormatter
を生成する。CsvMapMapper
(CsvDataBindConfig config, InputStream inputStream) コンストラクタ。CsvMapMapper
(CsvDataBindConfig config, Reader reader) コンストラクタ。CsvObjectMapperSupport
(CsvDataBindConfig config, Reader reader) CSV定義と入力リソースを持つAbstractCsvMapper
を生成する。MapCsvMapper
(CsvDataBindConfig config, OutputStream outputStream) コンストラクタ。MapCsvMapper
(CsvDataBindConfig config, Writer writer) コンストラクタ。ObjectCsvMapperSupport
(CsvDataBindConfig config, Writer writer) コンストラクタ。