public class StandardTypeConverter extends Object implements TypeConverter
TypeConverter interface,
delegating to a core Spring ConversionService.ConversionService| Constructor and Description |
|---|
StandardTypeConverter() |
StandardTypeConverter(org.springframework.core.convert.ConversionService conversionService) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canConvert(org.springframework.core.convert.TypeDescriptor sourceType,
org.springframework.core.convert.TypeDescriptor targetType)
Return true if the type converter can convert the specified type to the desired target type.
|
Object |
convertValue(Object value,
org.springframework.core.convert.TypeDescriptor sourceType,
org.springframework.core.convert.TypeDescriptor targetType)
Convert (may coerce) a value from one type to another, for example from a boolean to a string.
|
public StandardTypeConverter()
public StandardTypeConverter(org.springframework.core.convert.ConversionService conversionService)
public boolean canConvert(org.springframework.core.convert.TypeDescriptor sourceType,
org.springframework.core.convert.TypeDescriptor targetType)
TypeConvertercanConvert in interface TypeConvertersourceType - a type descriptor that describes the source typetargetType - a type descriptor that describes the requested result typepublic Object convertValue(Object value, org.springframework.core.convert.TypeDescriptor sourceType, org.springframework.core.convert.TypeDescriptor targetType)
TypeConverterconvertValue in interface TypeConvertervalue - the value to be convertedsourceType - a type descriptor that supplies extra information about the source objecttargetType - a type descriptor that supplies extra information about the requested result type