- Direct Known Subclasses:
- CurrencyStringConverter,- PercentageStringConverter
public class NumberStringConverter extends StringConverter<Number>
A 
StringConverter implementation for Number values. Instances of this class are immutable.- Since:
- JavaFX 2.1
- 
Constructor SummaryConstructors Constructor Description NumberStringConverter()Constructs aNumberStringConverterwith the default locale and format.NumberStringConverter(String pattern)Constructs aNumberStringConverterwith the default locale and the given decimal format pattern.NumberStringConverter(NumberFormat numberFormat)Constructs aNumberStringConverterwith the given number format.NumberStringConverter(Locale locale)Constructs aNumberStringConverterwith the given locale and the default format.NumberStringConverter(Locale locale, String pattern)Constructs aNumberStringConverterwith the given locale and decimal format pattern.
- 
Method SummaryModifier and Type Method Description protected NumberFormatgetNumberFormat()Returns aNumberFormatinstance to use for formatting and parsing in thisStringConverter.Methods declared in class javafx.util.StringConverterfromString, toString
- 
Constructor Details- 
NumberStringConverterpublic NumberStringConverter()Constructs aNumberStringConverterwith the default locale and format.
- 
NumberStringConverterConstructs aNumberStringConverterwith the given locale and the default format.- Parameters:
- locale- the locale used in determining the number format used to format the string
 
- 
NumberStringConverterConstructs aNumberStringConverterwith 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
 
- 
NumberStringConverterConstructs aNumberStringConverterwith 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
 
- 
NumberStringConverterConstructs aNumberStringConverterwith the given number format.- Parameters:
- numberFormat- the number format used to format the string
 
 
- 
- 
Method Details- 
getNumberFormatReturns aNumberFormatinstance to use for formatting and parsing in thisStringConverter.- Returns:
- a NumberFormatinstance for formatting and parsing in thisStringConverter
 
 
-