Module javafx.base

Class CurrencyStringConverter


public class CurrencyStringConverter extends NumberStringConverter
A StringConverter implementation for Number values that represent currency. Instances of this class are immutable.
Since:
JavaFX 2.1
See Also:
  • Constructor Details

    • CurrencyStringConverter

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

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

      public CurrencyStringConverter(String pattern)
      Constructs a CurrencyStringConverter 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:
    • CurrencyStringConverter

      public CurrencyStringConverter(Locale locale, String pattern)
      Constructs a CurrencyStringConverter 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:
    • CurrencyStringConverter

      public CurrencyStringConverter(NumberFormat numberFormat)
      Constructs a CurrencyStringConverter with the given number format.
      Parameters:
      numberFormat - the number format used to format the string