Method Summary |
|
public Object | clone() Standard override. |
public boolean | equals(Object obj) Override equals. |
public Currency | getCurrency() Gets the currency of these DecimalFormatSymbols. |
public String | getCurrencySymbol() Returns the currency symbol for the currency of these
DecimalFormatSymbols in their locale. |
public char | getDecimalSeparator() Gets the character used for decimal sign. |
public char | getDigit() Gets the character used for a digit in a pattern. |
char | getExponentialSymbol() Returns the character used to separate the mantissa from the exponent. |
public char | getGroupingSeparator() Gets the character used for thousands separator. |
public String | getInfinity() Gets the string used to represent infinity. |
public String | getInternationalCurrencySymbol() Returns the ISO 4217 currency code of the currency of these
DecimalFormatSymbols. |
public char | getMinusSign() Gets the character used to represent minus sign. |
public char | getMonetaryDecimalSeparator() Returns the monetary decimal separator. |
public String | getNaN() Gets the string used to represent "not a number". |
public char | getPatternSeparator() Gets the character used to separate positive and negative subpatterns
in a pattern. |
public char | getPerMill() Gets the character used for mille percent sign. |
public char | getPercent() Gets the character used for percent sign. |
public char | getZeroDigit() Gets the character used for zero. |
public int | hashCode() Override hashCode. |
public void | setCurrency(Currency currency) Sets the currency of these DecimalFormatSymbols. |
public void | setCurrencySymbol(String currency) Sets the currency symbol for the currency of these
DecimalFormatSymbols in their locale. |
public void | setDecimalSeparator(char decimalSeparator) Sets the character used for decimal sign. |
public void | setDigit(char digit) Sets the character used for a digit in a pattern. |
void | setExponentialSymbol(char exp) Sets the character used to separate the mantissa from the exponent. |
public void | setGroupingSeparator(char groupingSeparator) Sets the character used for thousands separator. |
public void | setInfinity(String infinity) Sets the string used to represent infinity. |
public void | setInternationalCurrencySymbol(String currencyCode) Sets the ISO 4217 currency code of the currency of these
DecimalFormatSymbols.
If the currency code is valid (as defined by
java.util.Currency.getInstance(java.lang.String) Currency.getInstance ),
this also sets the currency attribute to the corresponding Currency
instance and the currency symbol attribute to the currency's symbol
in the DecimalFormatSymbols' locale. |
public void | setMinusSign(char minusSign) Sets the character used to represent minus sign. |
public void | setMonetaryDecimalSeparator(char sep) Sets the monetary decimal separator. |
public void | setNaN(String NaN) Sets the string used to represent "not a number". |
public void | setPatternSeparator(char patternSeparator) Sets the character used to separate positive and negative subpatterns
in a pattern. |
public void | setPerMill(char perMill) Sets the character used for mille percent sign. |
public void | setPercent(char percent) Sets the character used for percent sign. |
public void | setZeroDigit(char zeroDigit) Sets the character used for zero. |