|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.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 Form| Field Summary | |
private static Hashtable |
cachedLocaleData
cache to hold the NumberElements and the Currency of a Locale. |
private Currency |
currency
|
private String |
currencySymbol
String denoting the local currency, e.g. "$". |
private static int |
currentSerialVersion
|
private char |
decimalSeparator
Character used for decimal sign. |
private char |
digit
Character used for a digit in a pattern. |
private char |
exponential
The character used to distinguish the exponent in a number formatted in exponential notation, e.g. |
private char |
groupingSeparator
Character used for thousands separator. |
private String |
infinity
String used to represent infinity. |
private String |
intlCurrencySymbol
ISO 4217 currency code denoting the local currency, e.g. |
private Locale |
locale
The locale of these currency format symbols. |
private char |
minusSign
Character used to represent minus sign. |
private char |
monetarySeparator
The decimal separator used when formatting currency values. |
private String |
NaN
String used to represent "not a number". |
private char |
patternSeparator
Character used to separate positive and negative subpatterns in a pattern. |
private char |
percent
Character used for percent sign. |
private char |
perMill
Character used for mille percent sign. |
private int |
serialVersionOnStream
Describes the version of DecimalFormatSymbols present on the stream.
|
(package private) static long |
serialVersionUID
|
private char |
zeroDigit
Character used for zero. |
| Constructor 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. |
Currency |
getCurrency()
Gets the currency of these DecimalFormatSymbols. |
String |
getCurrencySymbol()
Returns the currency symbol for the currency of these DecimalFormatSymbols in their locale. |
char |
getDecimalSeparator()
Gets the character used for decimal sign. |
char |
getDigit()
Gets the character used for a digit in a pattern. |
(package private) char |
getExponentialSymbol()
Returns the character used to separate the mantissa from the exponent. |
char |
getGroupingSeparator()
Gets the character used for thousands separator. |
String |
getInfinity()
Gets the string used to represent infinity. |
String |
getInternationalCurrencySymbol()
Returns the ISO 4217 currency code of the currency of these DecimalFormatSymbols. |
char |
getMinusSign()
Gets the character used to represent minus sign. |
char |
getMonetaryDecimalSeparator()
Returns the monetary decimal separator. |
String |
getNaN()
Gets the string used to represent "not a number". |
char |
getPatternSeparator()
Gets the character used to separate positive and negative subpatterns in a pattern. |
char |
getPercent()
Gets the character used for percent sign. |
char |
getPerMill()
Gets the character used for mille percent sign. |
char |
getZeroDigit()
Gets the character used for zero. |
int |
hashCode()
Override hashCode. |
private void |
initialize(Locale locale)
Initializes the symbols from the LocaleElements resource bundle. |
private void |
readObject(ObjectInputStream stream)
Reads the default serializable fields, provides default values for objects in older serial versions, and initializes non-serializable fields. |
void |
setCurrency(Currency currency)
Sets the currency of these DecimalFormatSymbols. |
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 |
setDigit(char digit)
Sets the character used for a digit in a pattern. |
(package private) void |
setExponentialSymbol(char exp)
Sets the character used to separate the mantissa from the exponent. |
void |
setGroupingSeparator(char groupingSeparator)
Sets the character used for thousands separator. |
void |
setInfinity(String infinity)
Sets the string used to represent infinity. |
void |
setInternationalCurrencySymbol(String currencyCode)
Sets the ISO 4217 currency code of the currency of these DecimalFormatSymbols. |
void |
setMinusSign(char minusSign)
Sets the character used to represent minus sign. |
void |
setMonetaryDecimalSeparator(char sep)
Sets the monetary decimal separator. |
void |
setNaN(String NaN)
Sets the string used to represent "not a number". |
void |
setPatternSeparator(char patternSeparator)
Sets the character used to separate positive and negative subpatterns in a pattern. |
void |
setPercent(char percent)
Sets the character used for percent sign. |
void |
setPerMill(char perMill)
Sets the character used for mille percent sign. |
void |
setZeroDigit(char zeroDigit)
Sets the character used for zero. |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
private char zeroDigit
getZeroDigit()private char groupingSeparator
getGroupingSeparator()private char decimalSeparator
getDecimalSeparator()private char perMill
getPerMill()private char percent
getPercent()private char digit
getDigit()private char patternSeparator
getPatternSeparator()private String infinity
getInfinity()private String NaN
getNaN()private char minusSign
getMinusSign()private String currencySymbol
getCurrencySymbol()private String intlCurrencySymbol
getInternationalCurrencySymbol()private char monetarySeparator
getMonetaryDecimalSeparator()private char exponential
Note that the public API provides no way to set this field, even though it is supported by the implementation and the stream format. The intent is that this will be added to the API in the future.
private Locale locale
private transient Currency currency
static final long serialVersionUID
private static final int currentSerialVersion
private int serialVersionOnStream
DecimalFormatSymbols present on the stream.
Possible values are:
monetarySeparator and exponential.
locale field.
DecimalFormatSymbols, the most recent format
(corresponding to the highest allowable serialVersionOnStream)
is always written.
private static final Hashtable cachedLocaleData
| Constructor Detail |
public DecimalFormatSymbols()
public DecimalFormatSymbols(Locale locale)
NullPointerException - if locale is null| 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 currencyCode)
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. If the currency code is not valid,
then the currency attribute is set to null and the currency symbol
attribute is not modified.
setCurrency(java.util.Currency),
setCurrencySymbol(java.lang.String)public Currency getCurrency()
public void setCurrency(Currency currency)
currency - the new currency to be used
NullPointerException - if currency is nullsetCurrencySymbol(java.lang.String),
setInternationalCurrencySymbol(java.lang.String)public char getMonetaryDecimalSeparator()
public void setMonetaryDecimalSeparator(char sep)
char getExponentialSymbol()
void setExponentialSymbol(char exp)
public Object clone()
clone in class ObjectCloneablepublic boolean equals(Object obj)
equals in class Objectobj - the reference object with which to compare.
true if this object is the same as the obj
argument; false otherwise.Object.hashCode(),
Hashtablepublic int hashCode()
hashCode in class ObjectObject.equals(java.lang.Object),
Hashtableprivate void initialize(Locale locale)
private void readObject(ObjectInputStream stream)
throws IOException,
ClassNotFoundException
serialVersionOnStream
is less than 1, initializes monetarySeparator to be
the same as decimalSeparator and exponential
to be 'E'.
If serialVersionOnStream is less then 2,
initializes localeto the root locale.
Sets serialVersionOnStream back to the maximum allowed value so that
default serialization will work properly if this object is streamed out again.
Initializes the currency from the intlCurrencySymbol field.
IOException
ClassNotFoundException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||