⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decimalformatsymbols.java

📁 java源代码 请看看啊 提点宝贵的意见
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * @(#)DecimalFormatSymbols.java	1.39 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *//* * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved * *   The original version of this source code and documentation is copyrighted * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These * materials are provided under terms of a License Agreement between Taligent * and Sun. This technology is protected by multiple US and International * patents. This notice and attribution to Taligent may not be removed. *   Taligent is a registered trademark of Taligent, Inc. * */package java.text;import java.io.IOException;import java.io.ObjectInputStream;import java.io.Serializable;import java.util.Currency;import java.util.Hashtable;import java.util.Locale;import java.util.ResourceBundle;import sun.text.resources.LocaleData;/** * This class represents the set of symbols (such as the decimal separator, * the grouping separator, and so on) needed by <code>DecimalFormat</code> * to format numbers. <code>DecimalFormat</code> creates for itself an instance of * <code>DecimalFormatSymbols</code> from its locale data.  If you need to change any * of these symbols, you can get the <code>DecimalFormatSymbols</code> object from * your <code>DecimalFormat</code> and modify it. * * @see          java.util.Locale * @see          DecimalFormat * @version      1.39, 01/23/03 * @author       Mark Davis * @author       Alan Liu */final public class DecimalFormatSymbols implements Cloneable, Serializable {    /**     * Create a DecimalFormatSymbols object for the default locale.     */    public DecimalFormatSymbols() {        initialize( Locale.getDefault() );    }    /**     * Create a DecimalFormatSymbols object for the given locale.     *     * @exception NullPointerException if <code>locale</code> is null     */    public DecimalFormatSymbols( Locale locale ) {        initialize( locale );    }    /**     * Gets the character used for zero. Different for Arabic, etc.     */    public char getZeroDigit() {        return zeroDigit;    }    /**     * Sets the character used for zero. Different for Arabic, etc.     */    public void setZeroDigit(char zeroDigit) {        this.zeroDigit = zeroDigit;    }    /**     * Gets the character used for thousands separator. Different for French, etc.     */    public char getGroupingSeparator() {        return groupingSeparator;    }    /**     * Sets the character used for thousands separator. Different for French, etc.     */    public void setGroupingSeparator(char groupingSeparator) {        this.groupingSeparator = groupingSeparator;    }    /**     * Gets the character used for decimal sign. Different for French, etc.     */    public char getDecimalSeparator() {        return decimalSeparator;    }    /**     * Sets the character used for decimal sign. Different for French, etc.     */    public void setDecimalSeparator(char decimalSeparator) {        this.decimalSeparator = decimalSeparator;    }    /**     * Gets the character used for mille percent sign. Different for Arabic, etc.     */    public char getPerMill() {        return perMill;    }    /**     * Sets the character used for mille percent sign. Different for Arabic, etc.     */    public void setPerMill(char perMill) {        this.perMill = perMill;    }    /**     * Gets the character used for percent sign. Different for Arabic, etc.     */    public char getPercent() {        return percent;    }    /**     * Sets the character used for percent sign. Different for Arabic, etc.     */    public void setPercent(char percent) {        this.percent = percent;    }    /**     * Gets the character used for a digit in a pattern.     */    public char getDigit() {        return digit;    }    /**     * Sets the character used for a digit in a pattern.     */    public void setDigit(char digit) {        this.digit = digit;    }    /**     * Gets the character used to separate positive and negative subpatterns     * in a pattern.     */    public char getPatternSeparator() {        return patternSeparator;    }    /**     * Sets the character used to separate positive and negative subpatterns     * in a pattern.     */    public void setPatternSeparator(char patternSeparator) {        this.patternSeparator = patternSeparator;    }    /**     * Gets the string used to represent infinity. Almost always left     * unchanged.     */    public String getInfinity() {        return infinity;    }    /**     * Sets the string used to represent infinity. Almost always left     * unchanged.     */    public void setInfinity(String infinity) {        this.infinity = infinity;    }    /**     * Gets the string used to represent "not a number". Almost always left     * unchanged.     */    public String getNaN() {        return NaN;    }    /**     * Sets the string used to represent "not a number". Almost always left     * unchanged.     */    public void setNaN(String NaN) {        this.NaN = NaN;    }    /**     * Gets the character used to represent minus sign. If no explicit     * negative format is specified, one is formed by prefixing     * minusSign to the positive format.     */    public char getMinusSign() {        return minusSign;    }    /**     * Sets the character used to represent minus sign. If no explicit     * negative format is specified, one is formed by prefixing     * minusSign to the positive format.     */    public void setMinusSign(char minusSign) {        this.minusSign = minusSign;    }    /**     * Returns the currency symbol for the currency of these     * DecimalFormatSymbols in their locale.     * @since 1.2     */    public String getCurrencySymbol()    {        return currencySymbol;    }    /**     * Sets the currency symbol for the currency of these     * DecimalFormatSymbols in their locale.     * @since 1.2     */    public void setCurrencySymbol(String currency)    {        currencySymbol = currency;    }    /**     * Returns the ISO 4217 currency code of the currency of these     * DecimalFormatSymbols.     * @since 1.2     */    public String getInternationalCurrencySymbol()    {        return intlCurrencySymbol;    }    /**     * Sets the ISO 4217 currency code of the currency of these     * DecimalFormatSymbols.     * If the currency code is valid (as defined by     * {@link 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. If the currency code is not valid,     * then the currency attribute is set to null and the currency symbol     * attribute is not modified.     *     * @see #setCurrency     * @see #setCurrencySymbol     * @since 1.2     */    public void setInternationalCurrencySymbol(String currencyCode)    {        intlCurrencySymbol = currencyCode;        currency = null;        if (currencyCode != null) {            try {                currency = Currency.getInstance(currencyCode);                currencySymbol = currency.getSymbol();            } catch (IllegalArgumentException e) {            }        }    }        /**     * Gets the currency of these DecimalFormatSymbols. May be null if the     * currency symbol attribute was previously set to a value that's not     * a valid ISO 4217 currency code.     *     * @return the currency used, or null     * @since 1.4     */    public Currency getCurrency() {        return currency;    }        /**     * Sets the currency of these DecimalFormatSymbols.     * This also sets the currency symbol attribute to the currency's symbol     * in the DecimalFormatSymbols' locale, and the international currency     * symbol attribute to the currency's ISO 4217 currency code.     *     * @param currency the new currency to be used     * @exception NullPointerException if <code>currency</code> is null     * @since 1.4     * @see #setCurrencySymbol     * @see #setInternationalCurrencySymbol     */    public void setCurrency(Currency currency) {        if (currency == null) {            throw new NullPointerException();        }        this.currency = currency;        intlCurrencySymbol = currency.getCurrencyCode();        currencySymbol = currency.getSymbol(locale);    }        /**     * Returns the monetary decimal separator.     * @since 1.2     */    public char getMonetaryDecimalSeparator()    {        return monetarySeparator;    }    /**     * Sets the monetary decimal separator.     * @since 1.2     */    public void setMonetaryDecimalSeparator(char sep)    {        monetarySeparator = sep;    }    //------------------------------------------------------------    // BEGIN   Package Private methods ... to be made public later    //------------------------------------------------------------    /**     * Returns the character used to separate the mantissa from the exponent.     */    char getExponentialSymbol()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -