接口 Formatter<T>
- 类型参数:
T
- the type of object this Formatter formats
- 所有已知实现类:
AbstractNumberFormatter
,CurrencyStyleFormatter
,CurrencyUnitFormatter
,DateFormatter
,InstantFormatter
,MonetaryAmountFormatter
,NumberStyleFormatter
,PercentStyleFormatter
public interface Formatter<T> extends Printer<T>, Parser<T>
Formats objects of type T. A Formatter is both a Printer and a Parser for an object type.- 从以下版本开始:
- 3.0
- 作者:
- Keith Donald