Class Summary |
AbstractPropertyFormat |
Base implementation that can be extended to more easily
provide property formatting support. |
BeanFieldPropertyFormat |
PropertyFormat implementation that uses the value of a
bean field as the format value. |
ClassPropertyFormat |
Formatter for Class objects |
DatePropertyFormat |
PropertyFormat implementation that uses a SimpleDateFormat
to convert java.util.Date objects (and their subclasses) to
a consistent date string. |
DefaultListPropertyFormat |
Default implementation for converting a list of objects to
and from text data. |
DefaultPropertyFormat |
Default implementation for converting objects to
and from text data. |
FieldSubstitutionFormat |
A formatter that will substitute parameters of a format string
with the values contained in the MetaObject's properties. |
FormatRegistry |
Matches types for PropertyFormats. |
MetaFieldPropertyFormat |
PropertyFormat implementation that uses the value of a
MetaObject field to convert a MetaObject into a string. |
MonthFormat |
Given an integer value representing the month, this will format
it as a string month name. |
MultiTypeFormat |
This is a property format implementation that uses a
FormatRegistry to lookup an appropriate PropertyFormat to
delegate to. |
PercentFormat |
Given a float or double value, this is rendered as a percentage
with a trailing % sign. |
UrlQueryFormat |
This formatter will return a format in the pattern of:
propName=propValue&prop2Name=prop2Value
as typically used in queries. |