- 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 Summary
Constructors Constructor Description NumberStringConverter()
Constructs aNumberStringConverter
with the default locale and format.NumberStringConverter(String pattern)
Constructs aNumberStringConverter
with the default locale and the given decimal format pattern.NumberStringConverter(NumberFormat numberFormat)
Constructs aNumberStringConverter
with the given number format.NumberStringConverter(Locale locale)
Constructs aNumberStringConverter
with the given locale and the default format.NumberStringConverter(Locale locale, String pattern)
Constructs aNumberStringConverter
with the given locale and decimal format pattern. -
Method Summary
Modifier and Type Method Description Number
fromString(String value)
Converts the string provided into an object defined by the specific converter.protected NumberFormat
getNumberFormat()
Returns aNumberFormat
instance to use for formatting and parsing in thisStringConverter
.String
toString(Number value)
Converts the object provided into its string form.
-
Constructor Details
-
NumberStringConverter
public NumberStringConverter()Constructs aNumberStringConverter
with the default locale and format. -
NumberStringConverter
Constructs aNumberStringConverter
with the given locale and the default format.- Parameters:
locale
- the locale used in determining the number format used to format the string
-
NumberStringConverter
Constructs aNumberStringConverter
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
Constructs aNumberStringConverter
with the given locale and decimal format pattern.- Parameters:
locale
- the locale used in determining the number format used to format the stringpattern
- the string pattern used in determining the number format used to format the string- See Also:
DecimalFormat
-
NumberStringConverter
Constructs aNumberStringConverter
with the given number format.- Parameters:
numberFormat
- the number format used to format the string
-
-
Method Details
-
fromString
Converts the string provided into an object defined by the specific converter. Format of the string and type of the resulting object is defined by the specific converter.- Specified by:
fromString
in classStringConverter<Number>
- Parameters:
value
- theString
to convert- Returns:
- an object representation of the string passed in.
-
toString
Converts the object provided into its string form. Format of the returned string is defined by the specific converter.- Specified by:
toString
in classStringConverter<Number>
- Parameters:
value
- the object of typeT
to convert- Returns:
- a string representation of the object passed in.
-
getNumberFormat
Returns aNumberFormat
instance to use for formatting and parsing in thisStringConverter
.- Returns:
- a
NumberFormat
instance for formatting and parsing in thisStringConverter
-