| Package | Description |
|---|---|
| org.springframework.core.convert.support |
Default implementation of the type conversion system.
|
| org.springframework.format |
An API for defining Formatters to format field model values for display in a UI.
|
| org.springframework.format.datetime |
Formatters for
java.util.Date properties. |
| org.springframework.format.support |
Support classes for the formatting package,
providing common implementations as well as adapters.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ConfigurableConversionService
Configuration interface to be implemented by most if not all
ConversionService
types. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultConversionService
A specialization of
GenericConversionService configured by default
with converters appropriate for most environments. |
class |
GenericConversionService
Base
ConversionService implementation suitable for use in most environments. |
| Modifier and Type | Method and Description |
|---|---|
static void |
DefaultConversionService.addCollectionConverters(ConverterRegistry converterRegistry)
Add common collection converters.
|
static void |
DefaultConversionService.addDefaultConverters(ConverterRegistry converterRegistry)
Add converters appropriate for most environments.
|
static void |
ConversionServiceFactory.registerConverters(Set<?> converters,
ConverterRegistry registry)
Register the given Converter objects with the given target ConverterRegistry.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FormatterRegistry
A registry of field formatting logic.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
DateFormatterRegistrar.addDateConverters(ConverterRegistry converterRegistry)
Add date converters to the specified registry.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultFormattingConversionService
A specialization of
FormattingConversionService configured by default with
converters and formatters appropriate for most applications. |
class |
FormattingConversionService
A
ConversionService implementation
designed to be configured as a FormatterRegistry. |