All Packages Class Hierarchy This Package Previous Next Index

Class java.text.DecimalFormatSymbols

java.lang.Object | +----java.text.DecimalFormatSymbols
public final class DecimalFormatSymbols
extends Object
implements Cloneable, Serializable
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.

See Also:
Locale, DecimalFormat

Constructor Index

 o DecimalFormatSymbols()
Create a DecimalFormatSymbols object for the default locale.
 o DecimalFormatSymbols(Locale)
Create a DecimalFormatSymbols object for the given locale.

Method Index

 o clone()
Standard override.
 o equals(Object)
Override equals
 o getDecimalSeparator()
character used for decimal sign.
 o getDigit()
character used for a digit in a pattern.
 o getGroupingSeparator()
character used for thousands separator.
 o getInfinity()
character used to represent infinity.
 o getMinusSign()
character used to represent minus sign.
 o getNaN()
character used to represent NaN.
 o getPatternSeparator()
character used to separate positive and negative subpatterns in a pattern.
 o getPercent()
character used for percent sign.
 o getPerMill()
character used for mille percent sign.
 o getZeroDigit()
character used for zero.
 o hashCode()
Override hashCode
 o setDecimalSeparator(char)
 o setDigit(char)
 o setGroupingSeparator(char)
 o setInfinity(String)
 o setMinusSign(char)
 o setNaN(String)
 o setPatternSeparator(char)
 o setPercent(char)
 o setPerMill(char)
 o setZeroDigit(char)

Constructors

 o DecimalFormatSymbols public DecimalFormatSymbols()
Create a DecimalFormatSymbols object for the default locale.

 o DecimalFormatSymbols public DecimalFormatSymbols(Locale locale)
Create a DecimalFormatSymbols object for the given locale.

Methods

 o getZeroDigit public char getZeroDigit()
character used for zero. Different for Arabic, etc.

 o setZeroDigit public void setZeroDigit(char zeroDigit)  o getGroupingSeparator public char getGroupingSeparator()
character used for thousands separator. Different for French, etc.

 o setGroupingSeparator public void setGroupingSeparator(char groupingSeparator)  o getDecimalSeparator public char getDecimalSeparator()
character used for decimal sign. Different for French, etc.

 o setDecimalSeparator public void setDecimalSeparator(char decimalSeparator)  o getPerMill public char getPerMill()
character used for mille percent sign. Different for Arabic, etc.

 o setPerMill public void setPerMill(char perMill)  o getPercent public char getPercent()
character used for percent sign. Different for Arabic, etc.

 o setPercent public void setPercent(char percent)  o getDigit public char getDigit()
character used for a digit in a pattern.

 o setDigit public void setDigit(char digit)  o getPatternSeparator public char getPatternSeparator()
character used to separate positive and negative subpatterns in a pattern.

 o setPatternSeparator public void setPatternSeparator(char patternSeparator)  o getInfinity public String getInfinity()
character used to represent infinity. Almost always left unchanged.

 o setInfinity public void setInfinity(String infinity)  o getNaN public String getNaN()
character used to represent NaN. Almost always left unchanged.

 o setNaN public void setNaN(String NaN)  o getMinusSign public char getMinusSign()
character used to represent minus sign. If no explicit negative format is specified, one is formed by prefixing minusSign to the positive format.

 o setMinusSign public void setMinusSign(char minusSign)  o clone public Object clone()
Standard override.

Overrides:
clone in class Object
 o equals public boolean equals(Object obj)
Override equals

Overrides:
equals in class Object
 o hashCode public int hashCode()
Override hashCode

Overrides:
hashCode in class Object

All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature