|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.text.DecimalFormatSymbols
This class represents the set of symbols (such as the decimal separator,
the grouping separator, and so on) needed by DecimalFormat
to format numbers. DecimalFormat
creates for itself an instance of
DecimalFormatSymbols
from its locale data. If you need to change any
of these symbols, you can get the DecimalFormatSymbols
object from
your DecimalFormat
and modify it.
Locale
,
DecimalFormat
, Serialized FormConstructor Summary | |
DecimalFormatSymbols()
Create a DecimalFormatSymbols object for the default locale. |
|
DecimalFormatSymbols(Locale locale)
Create a DecimalFormatSymbols object for the given locale. |
Method Summary | |
Object |
clone()
Standard override. |
boolean |
equals(Object obj)
Override equals |
String |
getCurrencySymbol()
Return the string denoting the local currency. |
char |
getDecimalSeparator()
character used for decimal sign. |
char |
getDigit()
character used for a digit in a pattern. |
char |
getGroupingSeparator()
character used for thousands separator. |
String |
getInfinity()
character used to represent infinity. |
String |
getInternationalCurrencySymbol()
Return the international string denoting the local currency. |
char |
getMinusSign()
character used to represent minus sign. |
char |
getMonetaryDecimalSeparator()
Return the monetary decimal separator. |
String |
getNaN()
character used to represent NaN. |
char |
getPatternSeparator()
character used to separate positive and negative subpatterns in a pattern. |
char |
getPercent()
character used for percent sign. |
char |
getPerMill()
character used for mille percent sign. |
char |
getZeroDigit()
character used for zero. |
int |
hashCode()
Override hashCode |
void |
setCurrencySymbol(String currency)
Set the string denoting the local currency. |
void |
setDecimalSeparator(char decimalSeparator)
|
void |
setDigit(char digit)
|
void |
setGroupingSeparator(char groupingSeparator)
|
void |
setInfinity(String infinity)
|
void |
setInternationalCurrencySymbol(String currency)
Set the international string denoting the local currency. |
void |
setMinusSign(char minusSign)
|
void |
setMonetaryDecimalSeparator(char sep)
Set the monetary decimal separator. |
void |
setNaN(String NaN)
|
void |
setPatternSeparator(char patternSeparator)
|
void |
setPercent(char percent)
|
void |
setPerMill(char perMill)
|
void |
setZeroDigit(char zeroDigit)
|
Methods inherited from class java.lang.Object |
finalize,
getClass,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public DecimalFormatSymbols()
public DecimalFormatSymbols(Locale locale)
Method Detail |
public char getZeroDigit()
public void setZeroDigit(char zeroDigit)
public char getGroupingSeparator()
public void setGroupingSeparator(char groupingSeparator)
public char getDecimalSeparator()
public void setDecimalSeparator(char decimalSeparator)
public char getPerMill()
public void setPerMill(char perMill)
public char getPercent()
public void setPercent(char percent)
public char getDigit()
public void setDigit(char digit)
public char getPatternSeparator()
public void setPatternSeparator(char patternSeparator)
public String getInfinity()
public void setInfinity(String infinity)
public String getNaN()
public void setNaN(String NaN)
public char getMinusSign()
public void setMinusSign(char minusSign)
public String getCurrencySymbol()
public void setCurrencySymbol(String currency)
public String getInternationalCurrencySymbol()
public void setInternationalCurrencySymbol(String currency)
public char getMonetaryDecimalSeparator()
public void setMonetaryDecimalSeparator(char sep)
public Object clone()
public boolean equals(Object obj)
public int hashCode()
|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |