Example usage for Java java.text DecimalFormatSymbols fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
char | getDecimalSeparator() Gets the character used for decimal sign. |
char | getGroupingSeparator() Gets the character used for thousands separator. |
DecimalFormatSymbols | getInstance() Gets the DecimalFormatSymbols instance for the default locale. |
DecimalFormatSymbols | getInstance(Locale locale) Gets the DecimalFormatSymbols instance for the specified locale. |
char | getMinusSign() Gets the character used to represent minus sign. |
char | getPercent() Gets the character used for percent sign. |
void | setCurrencySymbol(String currency) Sets the currency symbol for the currency of these DecimalFormatSymbols in their locale. |
void | setDecimalSeparator(char decimalSeparator) Sets the character used for decimal sign. |
void | setGroupingSeparator(char groupingSeparator) Sets the character used for thousands separator. |
void | setInfinity(String infinity) Sets the string used to represent infinity. |
void | setMonetaryDecimalSeparator(char sep) Sets the monetary decimal separator. |
void | setNaN(String NaN) Sets the string used to represent "not a number". |
void | setZeroDigit(char zeroDigit) Sets the character used for zero. |