Class DelegateToRegisteredConverter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T> T convert​(java.lang.Class<T> type, java.lang.Object value)
      Converts the specified input object into an output object of the specified type.
      <T> T convert​(java.lang.Class<T> type, java.lang.Object value, java.util.Locale locale)
      Converts the specified input object into an output object of the specified type.
      <T> T convert​(java.lang.Class<T> type, java.lang.Object value, java.util.Locale locale, java.lang.String pattern)
      Converts the specified input object into an output object of the specified type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DelegateToRegisteredConverter

        public DelegateToRegisteredConverter()
    • Method Detail

      • convert

        public <T> T convert​(java.lang.Class<T> type,
                             java.lang.Object value,
                             java.util.Locale locale,
                             java.lang.String pattern)
        Description copied from interface: IConverter
        Converts the specified input object into an output object of the specified type.
        Specified by:
        convert in interface IConverter
        Type Parameters:
        T - generics support for the data type specified.
        Parameters:
        type - data type to which the value should be converted.
        value - the input value to be converted.
        locale - locale to be used during conversion, if necessary.
        pattern - converter specific conversion pattern, to be used during conversion, if necessary.
      • convert

        public <T> T convert​(java.lang.Class<T> type,
                             java.lang.Object value,
                             java.util.Locale locale)
        Description copied from interface: IConverter
        Converts the specified input object into an output object of the specified type.
        Specified by:
        convert in interface IConverter
        Type Parameters:
        T - generics support for the data type specified.
        Parameters:
        type - data type to which the value should be converted.
        value - the input value to be converted.
        locale - locale to be used during conversion
      • convert

        public <T> T convert​(java.lang.Class<T> type,
                             java.lang.Object value)
        Description copied from interface: IConverter
        Converts the specified input object into an output object of the specified type.
        Specified by:
        convert in interface IConverter
        Type Parameters:
        T - generics support for the data type specified.
        Parameters:
        type - data type to which the value should be converted.
        value - the input value to be converted.