- java.lang.Object
- 
- javafx.util.StringConverter<Number>
- 
- javafx.util.converter.NumberStringConverter
 
 
- 
- Direct Known Subclasses:
- CurrencyStringConverter,- PercentageStringConverter
 
 public class NumberStringConverter extends StringConverter<Number> StringConverterimplementation forNumbervalues.- Since:
- JavaFX 2.1
 
- 
- 
Constructor SummaryConstructors Constructor Description NumberStringConverter()NumberStringConverter(String pattern)NumberStringConverter(NumberFormat numberFormat)NumberStringConverter(Locale locale)NumberStringConverter(Locale locale, String pattern)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description NumberfromString(String value)Converts the string provided into an object defined by the specific converter.protected NumberFormatgetNumberFormat()Return aNumberFormatinstance to use for formatting and parsing in thisStringConverter.StringtoString(Number value)Converts the object provided into its string form.
 
- 
- 
- 
Constructor Detail- 
NumberStringConverterpublic NumberStringConverter() 
 - 
NumberStringConverterpublic NumberStringConverter(Locale locale) 
 - 
NumberStringConverterpublic NumberStringConverter(String pattern) 
 - 
NumberStringConverterpublic NumberStringConverter(NumberFormat numberFormat) 
 
- 
 - 
Method Detail- 
fromStringpublic Number fromString(String value) 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:
- fromStringin class- StringConverter<Number>
- Parameters:
- value- the- Stringto convert
- Returns:
- an object representation of the string passed in.
 
 - 
toStringpublic String toString(Number value) Converts the object provided into its string form. Format of the returned string is defined by the specific converter.- Specified by:
- toStringin class- StringConverter<Number>
- Parameters:
- value- the object of type- Tto convert
- Returns:
- a string representation of the object passed in.
 
 - 
getNumberFormatprotected NumberFormat getNumberFormat() Return a NumberFormatinstance to use for formatting and parsing in thisStringConverter.- Returns:
- a NumberFormatinstance for formatting and parsing in thisStringConverter
 
 
- 
 
-