Package org.springframework.format
Interface Formatter<T>
- Type Parameters:
T- the type of object this Formatter formats
- All Known Implementing Classes:
AbstractNumberFormatter,CurrencyFormatter,CurrencyStyleFormatter,CurrencyUnitFormatter,DateFormatter,InstantFormatter,MonetaryAmountFormatter,NumberFormatter,NumberStyleFormatter,PercentFormatter,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.- Since:
- 3.0
- Author:
- Keith Donald