Spring for Android

org.springframework.core.convert.support
Interface ConfigurableConversionService

All Superinterfaces:
ConversionService, ConverterRegistry
All Known Implementing Classes:
DefaultConversionService, GenericConversionService

public interface ConfigurableConversionService
extends ConversionService, ConverterRegistry

Configuration interface to be implemented by most if not all ConversionService types. Consolidates the read-only operations exposed by ConversionService and the mutating operations of ConverterRegistry to allow for convenient ad-hoc addition and removal of Converters through.

Since:
2.0
Author:
Chris Beams

Method Summary
 
Methods inherited from interface org.springframework.core.convert.ConversionService
canConvert, canConvert, convert, convert
 
Methods inherited from interface org.springframework.core.convert.converter.ConverterRegistry
addConverter, addConverter, addConverter, addConverterFactory, removeConvertible
 


Spring for Android