|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ConverterRegistry
For registering converters with a type conversion system.
Method Summary | |
---|---|
void |
addConverter(Class<?> sourceType,
Class<?> targetType,
Converter<?,?> converter)
Add a plain converter to this registry. |
void |
addConverter(Converter<?,?> converter)
Add a plain converter to this registry. |
void |
addConverter(GenericConverter converter)
Add a generic converter to this registry. |
void |
addConverterFactory(ConverterFactory<?,?> converterFactory)
Add a ranged converter factory to this registry. |
void |
removeConvertible(Class<?> sourceType,
Class<?> targetType)
Remove any converters from sourceType to targetType. |
Method Detail |
---|
void addConverter(Converter<?,?> converter)
IllegalArgumentException
- if the parameterized types could not be resolvedvoid addConverter(Class<?> sourceType, Class<?> targetType, Converter<?,?> converter)
void addConverter(GenericConverter converter)
void addConverterFactory(ConverterFactory<?,?> converterFactory)
IllegalArgumentException
- if the parameterized types could not be resolved.void removeConvertible(Class<?> sourceType, Class<?> targetType)
sourceType
- the source typetargetType
- the target type
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |