Interface IConverter<C>

    • Method Detail

      • convertToObject

        C convertToObject​(java.lang.String value,
                          java.util.Locale locale)
                   throws ConversionException
        Converts the given String value
        Parameters:
        value - The string value to convert
        locale - The locale used to convert the value
        Returns:
        The converted value
        Throws:
        ConversionException - if value could not be converted
      • convertToString

        java.lang.String convertToString​(C value,
                                         java.util.Locale locale)
        Converts the given value to a string.
        Parameters:
        value - The value to convert
        locale - The locale used to convert the value
        Returns:
        The converted string value