Class URLConverter

  • All Implemented Interfaces:
    IConverter

    public class URLConverter
    extends AbstractConverter
    Perform conversions from:
    • URI
    • URL
    • CharSequence
    to:
    • URI
    • URL
    • String
    Since:
    10.1.0
    Version:
    $Revision: 24019 $ $Date: 2020-08-11 16:17:04 -0300 (Tue, 11 Aug 2020) $
    • Constructor Detail

      • URLConverter

        public URLConverter()
    • Method Detail

      • doConversion

        protected <T> T doConversion​(java.lang.Class<T> type,
                                     java.lang.Object value,
                                     java.util.Locale locale,
                                     java.lang.String pattern)
                              throws UnsupportedConversionTypeException
        Description copied from class: AbstractConverter
        Converts the specified input object into an output object of the specified type.
        Specified by:
        doConversion in class AbstractConverter
        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.
        Throws:
        UnsupportedConversionTypeException - if this converter does not supports converting to the specified type.