Uses of Class
com.hammurapi.convert.ConversionException

Uses of ConversionException in com.hammurapi.convert
 

Methods in com.hammurapi.convert that throw ConversionException
static
<S,T> T
ConvertingService.convert(S source, Class<T> targetType)
          Converts source to target type using Java 6 service loading for AtomicConverterBundle, AtomicConverter, and Converter services If no converter is found, this method performs converter discovery through constructors if target type is a class and through duck conversion if target type is an interface.
static
<S,T> T
ConvertingService.convert(S source, Class<T> targetType, ClassLoader classLoader)
          Converts source to target type using Java 6 service loading for AtomicConverterBundle, AtomicConverter, and Converter services If no converter is found, this method performs converter discovery through constructors if target type is a class and through duck conversion if target type is an interface.
static
<S,T> T
ConvertingService.convert(S source, Class<T> targetType, Context context)
          Converts source to target type using Java 6 service loading for AtomicConverterBundle, AtomicConverter, and Converter services If no converter is found, this method performs converter discovery through constructors if target type is a class and through duck conversion if target type is an interface.
<S,T> T
Converter.convert(S source, Class<T> targetType, Context context)
          Converts object to requested target type.
static
<S,T> T
ConvertingService.convert(S source, Class<T> targetType, Context context, ClassLoader classLoader)
          Converts source to target type using Java 6 service loading for AtomicConverterBundle, AtomicConverter, and Converter services If no converter is found, this method performs converter discovery through constructors if target type is a class and through duck conversion if target type is an interface.