-  型パラメーター:
 T - このフォーマッタがフォーマットするオブジェクトの型 
-  すべてのスーパーインターフェース:
 - Parser<T>, Printer<T>
 
-  すべての既知の実装クラス:
 - AbstractNumberFormatter, CurrencyStyleFormatter, CurrencyUnitFormatter, DateFormatter, InstantFormatter, MonetaryAmountFormatter, NumberStyleFormatter, PercentStyleFormatter
 
 
public interface Formatter<T>
extends Printer<T>, Parser<T>
 型 T のオブジェクトをフォーマットします。フォーマッターは、オブジェクト型のプリンターとパーサーの両方です。
-  導入:
 - 3.0
 -  作成者:
 - Keith Donald