Uses of Interface
org.springframework.binding.format.Formatter

Packages that use Formatter
org.springframework.binding.format Core services for formatting objects in string form. 
org.springframework.binding.format.support Supporting formatter implementations that are generically applicable and frequently used. 
 

Uses of Formatter in org.springframework.binding.format
 

Methods in org.springframework.binding.format that return Formatter
 Formatter FormatterFactory.getCurrencyFormatter()
          Returns a currency number formatter.
 Formatter FormatterFactory.getDateFormatter()
          Returns the default date format for the current locale.
 Formatter FormatterFactory.getDateFormatter(java.lang.String encodedFormat)
          Returns a date formatter for the encoded date format.
 Formatter FormatterFactory.getDateFormatter(Style style)
          Returns the date format with the specified style for the current locale.
 Formatter FormatterFactory.getDateTimeFormatter()
          Returns the default date/time format for the current locale.
 Formatter FormatterFactory.getDateTimeFormatter(Style dateStyle, Style timeStyle)
          Returns the date format with the specified styles for the current locale.
 Formatter FormatterFactory.getNumberFormatter(java.lang.Class numberClass)
          Returns a number formatter for the specified class.
 Formatter FormatterFactory.getPercentFormatter()
          Returns a percent number formatter.
 Formatter FormatterFactory.getTimeFormatter()
          Returns the default time format for the current locale.
 Formatter FormatterFactory.getTimeFormatter(Style style)
          Returns the time format with the specified style for the current locale.
 

Uses of Formatter in org.springframework.binding.format.support
 

Classes in org.springframework.binding.format.support that implement Formatter
 class AbstractFormatter
          Abstract base class for all formatters.
 class DateFormatter
          Formatter that formats date objects.
 class LabeledEnumFormatter
          Converts from string to a LabeledEnum instance and back.
 class NumberFormatter
          Converts from various Number specializations to String and back.
 class PropertyEditorFormatter
          Adapts a property editor to the formatter interface.
 

Methods in org.springframework.binding.format.support that return Formatter
 Formatter SimpleFormatterFactory.getCurrencyFormatter()
           
 Formatter AbstractFormatterFactory.getDateFormatter()
           
 Formatter SimpleFormatterFactory.getDateFormatter(java.lang.String encodedFormat)
           
 Formatter SimpleFormatterFactory.getDateFormatter(Style style)
           
 Formatter AbstractFormatterFactory.getDateTimeFormatter()
           
 Formatter SimpleFormatterFactory.getDateTimeFormatter(Style dateStyle, Style timeStyle)
           
 Formatter SimpleFormatterFactory.getNumberFormatter(java.lang.Class numberClass)
           
 Formatter SimpleFormatterFactory.getPercentFormatter()
           
 Formatter AbstractFormatterFactory.getTimeFormatter()
           
 Formatter SimpleFormatterFactory.getTimeFormatter(Style style)
           
 

Constructors in org.springframework.binding.format.support with parameters of type Formatter
FormatterPropertyEditor(Formatter formatter)
          Creates a formatter property editor.
FormatterPropertyEditor(Formatter formatter, java.lang.Class targetClass)
          Creates a formatter property editor.
 



Copyright © 2009 Spring Framework. All Rights Reserved.