Interface FormattedConversion<T>
-
- Type Parameters:
T- The type of the formatter object (typicallyDecimalFormatfor numeric values, andSimpleDateFormatfor dates)
- All Known Implementing Classes:
CalendarConversion,DateConversion,FormattedBigDecimalConversion,NumericConversion
public interface FormattedConversion<T>This interface identifies conversions associated with theFormatannotation. It is used whenFormat.options()is defined to set any give properties of the underlying formatter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T[]getFormatterObjects()Returns the formatter objects
-
-
-
Method Detail
-
getFormatterObjects
T[] getFormatterObjects()
Returns the formatter objects- Returns:
- the formatter objects used to apply formatting to values to generate formatted Strings, and parsing formatted Strings into values
-
-