Class NumberConverters.AbstractNumberToStringConverter<N extends java.lang.Number>

    • Constructor Detail

      • AbstractNumberToStringConverter

        public AbstractNumberToStringConverter​(java.lang.Class<N> sourceClass)
    • Method Detail

      • convert

        public java.lang.String convert​(N obj)
                                 throws ConversionException
        Description copied from interface: Converter
        Converts obj to T.
        Parameters:
        obj - The source Object to convert
        Returns:
        The converted Object
        Throws:
        ConversionException
      • convert

        public java.lang.String convert​(N obj,
                                        java.util.Locale locale,
                                        java.util.TimeZone timeZone)
                                 throws ConversionException
        Description copied from interface: LocalizedConverter
        Converts obj to T.
        Parameters:
        obj - The source Object to convert
        locale - The locale used for conversion - must not be null
        timeZone - The time zone used for conversion - must not be null
        Returns:
        The converted Object
        Throws:
        ConversionException