com.github.mygreen.cellformatter.term.EscapedCharTerm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-cellformatter Show documentation
Show all versions of excel-cellformatter Show documentation
Excelのセルの書式を解析してフォーマットするライブラリ。
package com.github.mygreen.cellformatter.term;
import java.util.Locale;
import com.github.mygreen.cellformatter.lang.ArgUtils;
import com.github.mygreen.cellformatter.lang.MSLocale;
import com.github.mygreen.cellformatter.tokenizer.Token;
/**
* エスケープされた文字の項
* @author T.TSUCHIE
*
*/
public class EscapedCharTerm implements Term {
private final Token.EscapedChar token;
public EscapedCharTerm(final Token.EscapedChar token) {
ArgUtils.notNull(token, "token");
this.token = token;
}
@Override
public String format(final T value, final MSLocale formatLocale, final Locale runtimeLocale) {
return token.getChar();
}
public Token.EscapedChar getToken() {
return token;
}
}