com.github.mygreen.cellformatter.LocaleSwitchFormatter Maven / Gradle / Ivy
Show all versions of excel-cellformatter Show documentation
package com.github.mygreen.cellformatter;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import com.github.mygreen.cellformatter.lang.ArgUtils;
/**
* ロケールによって、フォーマッタを切り替えるフォーマッタ。
* 該当するロケールがない場合、標準のフォーマッタを返す。
*
* @author T.TSUCHIE
*
*/
public class LocaleSwitchFormatter extends CellFormatter {
private final CellFormatter defaultFormatter;
private final Map formatterMap = new ConcurrentHashMap<>();
/**
* 標準のフォーマッタを指定するコンストラクタ
* @param defaultFormatter 標準のフォーマッタ。
* @throws IllegalArgumentException {@literal defaultFormatter == null.}
*/
public LocaleSwitchFormatter(final CellFormatter defaultFormatter) {
ArgUtils.notNull(defaultFormatter, "defaultFormatter");
this.defaultFormatter = defaultFormatter;
}
@Override
public CellFormatResult format(final CommonCell cell, final Locale locale) {
ArgUtils.notNull(cell, "cell");
if(locale == null) {
return defaultFormatter.format(cell, locale);
} else if(formatterMap.containsKey(locale)) {
return formatterMap.get(locale).format(cell, locale);
}
return defaultFormatter.format(cell, locale);
}
/**
* ローケールとフォーマッタを登録する。
* @param cellFormatter 登録対象のフォーマッタ。
* @param locales 登録対象のロケール。複数指定可能。
* @return 現在の自身のインスタンス。
* @throws IllegalArgumentException {@literal cellFormatter == null.}
* @throws IllegalArgumentException {@literal locales == null || locales.length == 0.}
*/
public LocaleSwitchFormatter register(final CellFormatter cellFormatter, final Locale... locales) {
ArgUtils.notNull(cellFormatter, "cellFormatter");
ArgUtils.notEmpty(locales, "locales");
for(Locale locale : locales) {
formatterMap.put(locale, cellFormatter);
}
return this;
}
}