org.springframework.core.convert.converter
Interface ConverterFactory<S,R>
-
- Type Parameters:
-
S
- The source type converters created by this factory can convert from -
R
- The target range (or base) type converters created by this factory can convert to; for exampleNumber
for a set of number subtypes.
public interface ConverterFactory<S,R>
A factory for "ranged" converters that can convert objects from S to subtypes of R.Implementations may additionally implement
ConditionalConverter
.- Since:
- 3.0
- Author:
- Keith Donald
- See Also:
-
ConditionalConverter
-
Method Summary
Methods Modifier and Type Method and Description <T extends R>
Converter<S,T>getConverter(Class<T> targetType)
Get the converter to convert from S to target type T, where T is also an instance of R.