Converter converter = selectMatchingConverter(source,type);
if (converter == null) return null;
Object value = converter.convert(source, type);
return new ConversionResult(converter,value);
}
public Object convertToNumber(Number value, Class toType) throws Exception {
toType = unwrap(toType);