- java.lang.Object
-
- javafx.util.StringConverter<Number>
-
- javafx.util.converter.NumberStringConverter
-
- Direct Known Subclasses:
CurrencyStringConverter
,PercentageStringConverter
public class NumberStringConverter extends StringConverter<Number>
StringConverter
implementation forNumber
values.- Since:
- JavaFX 2.1
-
-
Constructor Summary
Constructors Constructor Description NumberStringConverter()
NumberStringConverter(String pattern)
NumberStringConverter(NumberFormat numberFormat)
NumberStringConverter(Locale locale)
NumberStringConverter(Locale locale, String pattern)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Number
fromString(String value)
Converts the string provided into an object defined by the specific converter.protected NumberFormat
getNumberFormat()
Return aNumberFormat
instance to use for formatting and parsing in thisStringConverter
.String
toString(Number value)
Converts the object provided into its string form.
-
-
-
Constructor Detail
-
NumberStringConverter
public NumberStringConverter()
-
NumberStringConverter
public NumberStringConverter(Locale locale)
-
NumberStringConverter
public NumberStringConverter(String pattern)
-
NumberStringConverter
public NumberStringConverter(NumberFormat numberFormat)
-
-
Method Detail
-
fromString
public 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:
fromString
in classStringConverter<Number>
- Parameters:
value
- theString
to convert- Returns:
- an object representation of the string passed in.
-
toString
public 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:
toString
in classStringConverter<Number>
- Parameters:
value
- the object of typeT
to convert- Returns:
- a string representation of the object passed in.
-
getNumberFormat
protected NumberFormat getNumberFormat()
Return a
NumberFormat
instance to use for formatting and parsing in thisStringConverter
.- Returns:
- a
NumberFormat
instance for formatting and parsing in thisStringConverter
-
-