com.github.mygreen.cellformatter.term.Term 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.MSLocale;
/**
* フォーマッタ中の項を表現するインタフェース。
* @author T.TSUCHIE
* @param フォーマットするオブジェクトのタイプ。
*/
public interface Term {
/**
* 値をフォーマットする。
* @param value
* @param formatLocale 書式上のロケール。nullである場合がある。
* @param runtimeLocale 実行環境のロケール。
* @return 必ずnull以外の文字列を返す。
*/
String format(T value, MSLocale formatLocale, Locale runtimeLocale);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy