Module javafx.base

Class NumberStringConverter

    • Constructor Detail

      • NumberStringConverter

        public NumberStringConverter()
        Constructs a NumberStringConverter with the default locale and format.
      • NumberStringConverter

        public NumberStringConverter​(Locale locale)
        Constructs a NumberStringConverter with the given locale and the default format.
        Parameters:
        locale - the locale used in determining the number format used to format the string
      • NumberStringConverter

        public NumberStringConverter​(String pattern)
        Constructs a NumberStringConverter with the default locale and the given decimal format pattern.
        Parameters:
        pattern - the string pattern used in determining the number format used to format the string
        See Also:
        DecimalFormat
      • NumberStringConverter

        public NumberStringConverter​(Locale locale,
                                     String pattern)
        Constructs a NumberStringConverter with the given locale and decimal format pattern.
        Parameters:
        locale - the locale used in determining the number format used to format the string
        pattern - the string pattern used in determining the number format used to format the string
        See Also:
        DecimalFormat
      • NumberStringConverter

        public NumberStringConverter​(NumberFormat numberFormat)
        Constructs a NumberStringConverter with the given number format.
        Parameters:
        numberFormat - the number format used to format the string
    • Method Detail

      • getNumberFormat

        protected NumberFormat getNumberFormat()
        Returns a NumberFormat instance to use for formatting and parsing in this StringConverter.
        Returns:
        a NumberFormat instance for formatting and parsing in this StringConverter