java.lang.Object
javafx.util.StringConverter<Number>
javafx.util.converter.NumberStringConverter
javafx.util.converter.PercentageStringConverter
public class PercentageStringConverter extends NumberStringConverter
A 
StringConverter implementation for Number values that represent percentages. Instances of this class are
 immutable.- Since:
- JavaFX 2.1
- See Also:
- CurrencyStringConverter,- NumberStringConverter,- StringConverter
- 
Constructor SummaryConstructors Constructor Description PercentageStringConverter()Constructs aPercentageStringConverterwith the default locale and format.PercentageStringConverter(NumberFormat numberFormat)Constructs aPercentageStringConverterwith the given number format.PercentageStringConverter(Locale locale)Constructs aPercentageStringConverterwith the given locale and the default format.
- 
Method SummaryMethods declared in class javafx.util.converter.NumberStringConvertergetNumberFormatMethods declared in class javafx.util.StringConverterfromString, toString
- 
Constructor Details- 
PercentageStringConverterpublic PercentageStringConverter()Constructs aPercentageStringConverterwith the default locale and format.
- 
PercentageStringConverterConstructs aPercentageStringConverterwith the given locale and the default format.- Parameters:
- locale- the locale used in determining the number format used to format the string
 
- 
PercentageStringConverterConstructs aPercentageStringConverterwith the given number format.- Parameters:
- numberFormat- the number format used to format the string
 
 
-