Also: SpringCore
public interface

ConverterRegistry

org.springframework.core.convert.converter.ConverterRegistry
Known Indirect Subclasses

Class Overview

For registering converters with a type conversion system.

Summary

Public Methods
abstract void addConverter(Converter<?, ?> converter)
Add a plain converter to this registry.
abstract void addConverter(GenericConverter converter)
Add a generic converter to this registry.
abstract void addConverterFactory(ConverterFactory<?, ?> converterFactory)
Add a ranged converter factory to this registry.
abstract void removeConvertible(Class<?> sourceType, Class<?> targetType)
Remove any converters from sourceType to targetType.

Public Methods

public abstract void addConverter (Converter<?, ?> converter)

Also: SpringCore

Add a plain converter to this registry.

public abstract void addConverter (GenericConverter converter)

Also: SpringCore

Add a generic converter to this registry.

public abstract void addConverterFactory (ConverterFactory<?, ?> converterFactory)

Also: SpringCore

Add a ranged converter factory to this registry.

public abstract void removeConvertible (Class<?> sourceType, Class<?> targetType)

Also: SpringCore

Remove any converters from sourceType to targetType.

Parameters
sourceType the source type
targetType the target type