Java java.text DecimalFormatSymbols fields, constructors, methods, implement or subclass

Example usage for Java java.text DecimalFormatSymbols fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.text DecimalFormatSymbols.

The text is from its open source code.

Constructor

DecimalFormatSymbols()
Create a DecimalFormatSymbols object for the default java.util.Locale.Category#FORMAT FORMAT locale.
DecimalFormatSymbols(Locale locale)
Create a DecimalFormatSymbols object for the given locale.

Method

chargetDecimalSeparator()
Gets the character used for decimal sign.
chargetGroupingSeparator()
Gets the character used for thousands separator.
DecimalFormatSymbolsgetInstance()
Gets the DecimalFormatSymbols instance for the default locale.
DecimalFormatSymbolsgetInstance(Locale locale)
Gets the DecimalFormatSymbols instance for the specified locale.
chargetMinusSign()
Gets the character used to represent minus sign.
chargetPercent()
Gets the character used for percent sign.
voidsetCurrencySymbol(String currency)
Sets the currency symbol for the currency of these DecimalFormatSymbols in their locale.
voidsetDecimalSeparator(char decimalSeparator)
Sets the character used for decimal sign.
voidsetGroupingSeparator(char groupingSeparator)
Sets the character used for thousands separator.
voidsetInfinity(String infinity)
Sets the string used to represent infinity.
voidsetMonetaryDecimalSeparator(char sep)
Sets the monetary decimal separator.
voidsetNaN(String NaN)
Sets the string used to represent "not a number".
voidsetZeroDigit(char zeroDigit)
Sets the character used for zero.