Class FormatUtils


  • public class FormatUtils
    extends Object
    Author:
    Narcis Marcu (narcism@users.sourceforge.net)
    • Constructor Detail

      • FormatUtils

        public FormatUtils()
    • Method Detail

      • getFormattedNumber

        public static Number getFormattedNumber​(NumberFormat numberFormat,
                                                String fieldValue,
                                                Class<?> valueClass)
                                         throws ParseException
        Creates a number from a string value
        Parameters:
        numberFormat -
        fieldValue -
        valueClass -
        Returns:
        the number as parsed from the string
        Throws:
        ParseException
      • getFormattedDate

        public static Date getFormattedDate​(DateFormat dateFormat,
                                            String fieldValue,
                                            Class<?> valueClass)
                                     throws ParseException
        Creates a date from a string value
        Parameters:
        dateFormat -
        fieldValue -
        valueClass -
        Returns:
        the date as parsed from the string
        Throws:
        ParseException