- Description
- Nested Class Summary
- Field Summary
- Constructor Summary
- Method Summary
- Field Details
- Constructor Details
- Method Details
- format(Object, StringBuffer, FieldPosition)
- parseObject(String, ParsePosition)
- format(double)
- format(long)
- format(double, StringBuffer, FieldPosition)
- format(long, StringBuffer, FieldPosition)
- parse(String, ParsePosition)
- parse(String)
- isParseIntegerOnly()
- setParseIntegerOnly(boolean)
- isStrict()
- setStrict(boolean)
- getInstance()
- getInstance(Locale)
- getNumberInstance()
- getNumberInstance(Locale)
- getIntegerInstance()
- getIntegerInstance(Locale)
- getCurrencyInstance()
- getCurrencyInstance(Locale)
- getPercentInstance()
- getPercentInstance(Locale)
- getCompactNumberInstance()
- getCompactNumberInstance(Locale, NumberFormat.Style)
- getAvailableLocales()
- hashCode()
- equals(Object)
- clone()
- isGroupingUsed()
- setGroupingUsed(boolean)
- getMaximumIntegerDigits()
- setMaximumIntegerDigits(int)
- getMinimumIntegerDigits()
- setMinimumIntegerDigits(int)
- getMaximumFractionDigits()
- setMaximumFractionDigits(int)
- getMinimumFractionDigits()
- setMinimumFractionDigits(int)
- getCurrency()
- setCurrency(Currency)
- getRoundingMode()
- setRoundingMode(RoundingMode)
Class NumberFormat
Getting a NumberFormat
To get a NumberFormat for the default Locale, use one of the static factory methods that return a concrete subclass of NumberFormat. The following formats all provide an example of formatting the Number "2000.50" with the US locale as the default locale.- Use getInstance() or getNumberInstance() to get a decimal format. For example, "2,000.5".
- Use getIntegerInstance() to get an integer number format. For example, "2,000".
- Use getCurrencyInstance() to get a currency number format. For example, "$2,000.50".
- Use getCompactNumberInstance() to get a compact number format. For example, "2K".
- Use getPercentInstance() to get a format for displaying percentages. For example, "200,050%".
Locale Extensions
Formatting behavior can be changed when using a locale that contains any of the following Unicode extensions,- "nu" ( Numbering System) - Overrides the decimal digits used
- "rg" ( Region Override) - Overrides the country used
- "cf" ( Currency Format style) - Overrides the Currency Format style used
- "cu" ( Currency Type) - Overrides the Currency used
For both "nu" and "cu", if they are specified in addition to "rg", the respective values from the "nu" and "cu" extension supersede the implicit ones from the "rg" extension. Although Unicode extensions defines various keys and values, actual locale-sensitive service implementations in a Java Runtime Environment might not support any particular Unicode locale attributes or key/type pairs.
Below is an example of a "US" locale currency format with accounting style, NumberFormat.getCurrencyInstance(Locale.forLanguageTag("en-US-u-cf-account")); With this style, a negative value is formatted enclosed in parentheses, instead of being prepended with a minus sign.
Using NumberFormat
The following is an example of formatting and parsing in a localized fashion,Customizing NumberFormat
NumberFormat provides API to customize formatting and parsing behavior,- setParseIntegerOnly(boolean); when true, will only return the integer portion of the number parsed from the String.
- setMinimumFractionDigits(int); Use to adjust the expected digits when formatting. Use any of the other minimum/maximum or fraction/integer setter methods in the same manner. These methods have no impact on parsing behavior.
- setGroupingUsed(boolean); when true, formatted numbers will be displayed with grouping separators. Additionally, when false, parsing will not expect grouping separators in the parsed String.
- setStrict(boolean); when true, parsing will be done strictly. The behavior of strict parsing should be referred to in the implementing NumberFormat subclass.
To provide more control over formatting or parsing behavior, type checking can be done to safely convert to an implementing subclass of NumberFormat; this provides additional methods defined by the subclass. For example,
You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to:
- Progressively parse through pieces of a string
- Align the decimal point and other areas
- If you are using a monospaced font with spacing for alignment, you can pass the FieldPosition in your format call, with field = INTEGER_FIELD. On output, getEndIndex will be set to the offset between the last character of the integer and the decimal. Add (desiredSpaceCount - getEndIndex) spaces at the front of the string.
- If you are using proportional fonts, instead of padding with spaces, measure the width of the string in pixels from the start to getEndIndex. Then move the pen by (desiredPixelWidth - widthToAlignmentPoint) before drawing the text. It also works where there is no decimal, but possibly additional characters at the end, e.g., with parentheses in negative numbers: "(12)" for -12.
Leniency
NumberFormat by default, parses leniently. Subclasses may consider implementing strict parsing and as such, overriding and providing implementations for the optional isStrict() and setStrict(boolean) methods.Lenient parsing should be used when attempting to parse a number out of a String that contains non-numerical or non-format related values. For example, using a Locale.US currency format to parse the number 1000 out of the String "$1,000.00 was paid". Lenient parsing also allows loose matching of characters in the source text. For example, an implementation of the NumberFormat class may allow matching "−" (U+2212 MINUS SIGN) to the "-" (U+002D HYPHEN-MINUS) pattern character when used as a negative prefix.
Strict parsing should be used when attempting to ensure a String adheres exactly to a locale's conventions, and can thus serve to validate input. For example, successfully parsing the number 1000.55 out of the String "1.000,55" confirms the String exactly adhered to the Locale.GERMANY numerical conventions.
Synchronization
Number formats are generally not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.- The format(double, StringBuffer, FieldPosition), format(long, StringBuffer, FieldPosition) and parse(String, ParsePosition) methods may throw NullPointerException, if any of their parameter is null. The subclass may provide its own implementation and specification about NullPointerException.
- The default implementation provides rounding modes defined in RoundingMode for formatting numbers. It uses the round half-even algorithm. To change the rounding mode use setRoundingMode. The NumberFormat returned by the static factory methods is configured to round floating point numbers using half-even rounding (see RoundingMode.HALF_EVEN) for formatting.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classDefines constants that are used as attribute keys in the AttributedCharacterIterator returned from NumberFormat.formatToCharacterIterator and as field identifiers in FieldPosition.static enumA number format style. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intField constant used to construct a FieldPosition object.static final intField constant used to construct a FieldPosition object. -
Constructor Summary
Constructors -
Method Summary
All MethodsStatic MethodsInstance MethodsAbstract MethodsConcrete MethodsModifier and TypeMethodDescriptionclone()Overrides Cloneable.booleanCompares the specified object with this NumberFormat for equality.final Stringformat(double number)Specialization of format.abstract StringBufferSpecialization of format.final Stringformat(long number)Specialization of format.abstract StringBufferSpecialization of format.Formats a number and appends the resulting text to the given string buffer.static Locale[]Returns an array of all locales for which the get*Instance methods of this class can return localized instances.static NumberFormatstatic NumberFormatReturns a compact number format for the specified locale and formatStyle.Gets the currency used by this number format when formatting currency values.static final NumberFormatReturns a currency format for the current default FORMAT locale.static NumberFormatgetCurrencyInstance(Locale inLocale)Returns a currency format for the specified locale.static final NumberFormatReturns a general-purpose number format for the current default FORMAT locale.static NumberFormatgetInstance(Locale inLocale)Returns a general-purpose number format for the specified locale.static final NumberFormatReturns an integer number format for the current default FORMAT locale.static NumberFormatgetIntegerInstance(Locale inLocale)Returns an integer number format for the specified locale.intReturns the maximum number of digits allowed in the fraction portion of a number during formatting.intReturns the maximum number of digits allowed in the integer portion of a number during formatting.intReturns the minimum number of digits allowed in the fraction portion of a number during formatting.intReturns the minimum number of digits allowed in the integer portion of a number during formatting.static final NumberFormatReturns a general-purpose number format for the current default FORMAT locale.static NumberFormatgetNumberInstance(Locale inLocale)Returns a general-purpose number format for the specified locale.static final NumberFormatReturns a percentage format for the current default FORMAT locale.static NumberFormatgetPercentInstance(Locale inLocale)Returns a percentage format for the specified locale.Gets the RoundingMode used in this NumberFormat.inthashCode()Returns the hash code for this NumberFormat.booleanReturns true if grouping is used in this format.booleanReturns true if this format will parse numbers as integers only.booleanisStrict()Returns true if this format will parse numbers strictly; false otherwise.Parses text from the beginning of the given string to produce a Number.abstract NumberParses text from the beginning of the given string to produce a Number.final ObjectParses text from the given string to produce an object.voidsetCurrency(Currency currency)Sets the currency used by this number format when formatting currency values.voidsetGroupingUsed(boolean newValue)Set whether or not grouping will be used in this format.voidsetMaximumFractionDigits(int newValue)Sets the maximum number of digits allowed in the fraction portion of a number during formatting.voidsetMaximumIntegerDigits(int newValue)Sets the maximum number of digits allowed in the integer portion of a number during formatting.voidsetMinimumFractionDigits(int newValue)Sets the minimum number of digits allowed in the fraction portion of a number during formatting.voidsetMinimumIntegerDigits(int newValue)Sets the minimum number of digits allowed in the integer portion of a number during formatting.voidsetParseIntegerOnly(boolean value)Sets whether or not numbers should be parsed as integers only.voidsetRoundingMode(RoundingMode roundingMode)Sets the RoundingMode used in this NumberFormat.voidsetStrict(boolean strict)Change the leniency value for parsing.Methods declared in class Format
format, formatToCharacterIterator, parseObjectModifier and TypeMethodDescriptionfinal StringFormats an object to produce a string.Formats an Object producing an AttributedCharacterIterator.parseObject(String source)Parses text from the beginning of the given string to produce an object.Methods declared in class Object
finalize, getClass, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?>getClass()Returns the runtime class of this Object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis)Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos)Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
INTEGER_FIELD
public static final int INTEGER_FIELDField constant used to construct a FieldPosition object. Signifies that the position of the integer part of a formatted number should be returned.See Also: -
FRACTION_FIELD
public static final int FRACTION_FIELDField constant used to construct a FieldPosition object. Signifies that the position of the fraction part of a formatted number should be returned.See Also:
-
-
Constructor Details
-
NumberFormat
protected NumberFormat()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
format
Formats a number and appends the resulting text to the given string buffer. The number can be of any subclass of Number.Specified by: format in class Format Parameters: number - the number to format toAppendTo - the StringBuffer to which the formatted text is to be appended pos - keeps track on the position of the field within the returned string. For example, for formatting a number 1234567.89 in Locale.US locale, if the given fieldPosition is INTEGER_FIELD, the begin index and end index of fieldPosition will be set to 0 and 9, respectively for the output string 1,234,567.89. Returns: the value passed in as toAppendTo Throws: IllegalArgumentException - if number is null or not an instance of Number. NullPointerException - if toAppendTo or pos is null ArithmeticException - if rounding is needed with rounding mode being set to RoundingMode.UNNECESSARY See Also:This implementation extracts the number's value using Number.longValue() for all integral type values that can be converted to long without loss of information, including BigInteger values with a bit length of less than 64, and Number.doubleValue() for all other types. It then calls format(long,java.lang.StringBuffer,java.text.FieldPosition) or format(double,java.lang.StringBuffer,java.text.FieldPosition). This may result in loss of magnitude information and precision for BigInteger and BigDecimal values.
-
parseObject
Parses text from the given string to produce an object.Specified by: parseObject in class Format Implementation Requirements: This implementation is equivalent to calling parse(source, pos). Parameters: source - the String to parse pos - A ParsePosition object with index and error index information as described above. Returns: A Number parsed from the string. In case of error, returns null. Throws: NullPointerException - if source or pos is null.This method attempts to parse text starting at the index given by pos. If parsing succeeds, then the index of pos is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed object is returned. The updated pos can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of pos is not changed, the error index of pos is set to the index of the character where the error occurred, and null is returned.
-
format
Specialization of format.Parameters: number - the double number to format Returns: the formatted String Throws: ArithmeticException - if rounding is needed with rounding mode being set to RoundingMode.UNNECESSARY See Also: -
format
Specialization of format.Parameters: number - the long number to format Returns: the formatted String Throws: ArithmeticException - if rounding is needed with rounding mode being set to RoundingMode.UNNECESSARY See Also: -
format
Specialization of format.Parameters: number - the double number to format toAppendTo - the StringBuffer to which the formatted text is to be appended pos - keeps track on the position of the field within the returned string. For example, for formatting a number 1234567.89 in Locale.US locale, if the given fieldPosition is INTEGER_FIELD, the begin index and end index of fieldPosition will be set to 0 and 9, respectively for the output string 1,234,567.89. Returns: the formatted StringBuffer Throws: ArithmeticException - if rounding is needed with rounding mode being set to RoundingMode.UNNECESSARY See Also: -
format
Specialization of format.Parameters: number - the long number to format toAppendTo - the StringBuffer to which the formatted text is to be appended pos - keeps track on the position of the field within the returned string. For example, for formatting a number 123456789 in Locale.US locale, if the given fieldPosition is INTEGER_FIELD, the begin index and end index of fieldPosition will be set to 0 and 11, respectively for the output string 123,456,789. Returns: the formatted StringBuffer Throws: ArithmeticException - if rounding is needed with rounding mode being set to RoundingMode.UNNECESSARY See Also: -
parse
Parses text from the beginning of the given string to produce a Number.Parameters: source - the String to parse parsePosition - A ParsePosition object with index and error index information as described above. Returns: A Number parsed from the string. In case of failure, returns null. Throws: NullPointerException - if source or ParsePosition is null. See Also:This method attempts to parse text starting at the index given by the ParsePosition. If parsing succeeds, then the index of the ParsePosition is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed number is returned. The updated ParsePosition can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of the ParsePosition is not changed, the error index of the ParsePosition is set to the index of the character where the error occurred, and null is returned.
This method will return a Long if possible (e.g., within the range [Long.MIN_VALUE, Long.MAX_VALUE] and with no decimals), otherwise a Double.
-
parse
Parses text from the beginning of the given string to produce a Number.Parameters: source - A String, to be parsed from the beginning. Returns: A Number parsed from the string. Throws: ParseException - if parsing fails NullPointerException - if source is null. See Also:This method will return a Long if possible (e.g., within the range [Long.MIN_VALUE, Long.MAX_VALUE] and with no decimals), otherwise a Double.
-
isParseIntegerOnly
public boolean isParseIntegerOnly()Returns true if this format will parse numbers as integers only. The ParsePosition index will be set to the position of the decimal symbol. The exact format accepted by the parse operation is locale dependent. For example in the English locale, with ParseIntegerOnly true, the string "123.45" would be parsed as the integer value 123.Returns: true if numbers should be parsed as integers only; false otherwise -
setParseIntegerOnly
public void setParseIntegerOnly(boolean value)Sets whether or not numbers should be parsed as integers only.Parameters: value - true if numbers should be parsed as integers only; false otherwise See Also: -
isStrict
public boolean isStrict()Returns true if this format will parse numbers strictly; false otherwise.Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses should override this method when implementing strict parsing. Returns: true if this format will parse numbers strictly; false otherwise Throws: UnsupportedOperationException - if the implementation of this method does not support this operation Since: 23 See Also: -
setStrict
public void setStrict(boolean strict)Change the leniency value for parsing. Parsing can either be strict or lenient, by default it is lenient.Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses should override this method when implementing strict parsing. Parameters: strict - true if parsing should be done strictly; false otherwise Throws: UnsupportedOperationException - if the implementation of this method does not support this operation Since: 23 See Also: -
getInstance
Returns a general-purpose number format for the current default FORMAT locale. This is the same as calling getNumberInstance().Returns: the NumberFormat instance for general-purpose number formatting -
getInstance
Returns a general-purpose number format for the specified locale. This is the same as calling getNumberInstance(inLocale).Parameters: inLocale - the desired locale Returns: the NumberFormat instance for general-purpose number formatting -
getNumberInstance
Returns a general-purpose number format for the current default FORMAT locale.Returns: the NumberFormat instance for general-purpose number formatting See Also:This is equivalent to calling getNumberInstance(Locale.getDefault(Locale.Category.FORMAT)).
-
getNumberInstance
Returns a general-purpose number format for the specified locale.Parameters: inLocale - the desired locale Returns: the NumberFormat instance for general-purpose number formatting -
getIntegerInstance
Returns an integer number format for the current default FORMAT locale. The returned number format is configured to round floating point numbers to the nearest integer using half-even rounding (see RoundingMode.HALF_EVEN) for formatting, and to parse only the integer part of an input string (see isParseIntegerOnly).Returns: a number format for integer values Since: 1.4 See Also:This is equivalent to calling getIntegerInstance(Locale.getDefault(Locale.Category.FORMAT)).
-
getIntegerInstance
Returns an integer number format for the specified locale. The returned number format is configured to round floating point numbers to the nearest integer using half-even rounding (see RoundingMode.HALF_EVEN) for formatting, and to parse only the integer part of an input string (see isParseIntegerOnly).Parameters: inLocale - the desired locale Returns: a number format for integer values Since: 1.4 See Also: -
getCurrencyInstance
Returns a currency format for the current default FORMAT locale.Returns: the NumberFormat instance for currency formatting See Also:This is equivalent to calling getCurrencyInstance(Locale.getDefault(Locale.Category.FORMAT)).
-
getCurrencyInstance
Returns a currency format for the specified locale.Parameters: inLocale - the desired locale Returns: the NumberFormat instance for currency formatting External SpecificationsIf the specified locale contains the "cf" ( currency format style) Unicode extension, the returned currency format uses the style if it is available. Otherwise, the style uses the default "standard" currency format. For example, if the style designates "account", negative currency amounts use a pair of parentheses in some locales.
-
getPercentInstance
Returns a percentage format for the current default FORMAT locale.Returns: the NumberFormat instance for percentage formatting See Also:This is equivalent to calling getPercentInstance(Locale.getDefault(Locale.Category.FORMAT)).
-
getPercentInstance
Returns a percentage format for the specified locale.Parameters: inLocale - the desired locale Returns: the NumberFormat instance for percentage formatting -
getCompactNumberInstance
Returns: A NumberFormat instance for compact number formatting Since: 12 See Also: -
getCompactNumberInstance
Returns a compact number format for the specified locale and formatStyle.Parameters: locale - the desired locale formatStyle - the style for formatting a number Returns: A NumberFormat instance for compact number formatting Throws: NullPointerException - if locale or formatStyle is null Since: 12 See Also: -
getAvailableLocales
Returns an array of all locales for which the get*Instance methods of this class can return localized instances. The returned array represents the union of locales supported by the Java runtime and by installed NumberFormatProvider implementations. At a minimum, the returned array must contain a Locale instance equal to Locale.ROOT and a Locale instance equal to Locale.US.Returns: An array of locales for which localized NumberFormat instances are available. -
hashCode
public int hashCode()Returns the hash code for this NumberFormat.Overrides: hashCode in class Object Implementation Requirements: This method calculates the hash code value using the values returned by getMaximumIntegerDigits() and getMaximumFractionDigits(). Returns: the hash code for this NumberFormat See Also: -
equals
Compares the specified object with this NumberFormat for equality. Returns true if the object is also a NumberFormat and the two formats would format any value the same.Overrides: equals in class Object Implementation Requirements: This method performs an equality check with a notion of class identity based on getClass(), rather than instanceof. Therefore, in the equals methods in subclasses, no instance of this class should compare as equal to an instance of a subclass. Parameters: obj - object to be compared for equality Returns: true if the specified object is equal to this NumberFormat See Also: -
clone
-
isGroupingUsed
public boolean isGroupingUsed()Returns true if grouping is used in this format. This applies to both formatting and parsing. The grouping separator as well as the size of each group is locale dependent and is determined by sub-classes of NumberFormat. For example, consider a NumberFormat that expects a "," grouping separator symbol with a grouping size of 3.Returns: true if grouping is used; false otherwise See Also:- Formatting 1234567 with grouping on returns "1,234,567"
- Parsing "1,234,567" with grouping off returns 1
- Parsing "1,234,567" with grouping off when isStrict() returns true throws ParseException
-
setGroupingUsed
public void setGroupingUsed(boolean newValue)Set whether or not grouping will be used in this format. This applies to both formatting and parsing.Parameters: newValue - true if grouping is used; false otherwise See Also: -
getMaximumIntegerDigits
public int getMaximumIntegerDigits()Returns the maximum number of digits allowed in the integer portion of a number during formatting.Returns: the maximum number of digits See Also: -
setMaximumIntegerDigits
public void setMaximumIntegerDigits(int newValue)Sets the maximum number of digits allowed in the integer portion of a number during formatting. maximumIntegerDigits must be ≥ minimumIntegerDigits. If the new value for maximumIntegerDigits is less than the current value of minimumIntegerDigits, then minimumIntegerDigits will also be set to the new value. Negative input values are replaced with 0.Parameters: newValue - the maximum number of integer digits to be shown. The concrete subclass may enforce an upper limit to this value appropriate to the numeric type being formatted. See Also: -
getMinimumIntegerDigits
public int getMinimumIntegerDigits()Returns the minimum number of digits allowed in the integer portion of a number during formatting.Returns: the minimum number of digits See Also: -
setMinimumIntegerDigits
public void setMinimumIntegerDigits(int newValue)Sets the minimum number of digits allowed in the integer portion of a number during formatting. minimumIntegerDigits must be ≤ maximumIntegerDigits. If the new value for minimumIntegerDigits exceeds the current value of maximumIntegerDigits, then maximumIntegerDigits will also be set to the new value. Negative input values are replaced with 0.Parameters: newValue - the minimum number of integer digits to be shown. The concrete subclass may enforce an upper limit to this value appropriate to the numeric type being formatted. See Also: -
getMaximumFractionDigits
public int getMaximumFractionDigits()Returns the maximum number of digits allowed in the fraction portion of a number during formatting.Returns: the maximum number of digits. See Also: -
setMaximumFractionDigits
public void setMaximumFractionDigits(int newValue)Sets the maximum number of digits allowed in the fraction portion of a number during formatting. maximumFractionDigits must be ≥ minimumFractionDigits. If the new value for maximumFractionDigits is less than the current value of minimumFractionDigits, then minimumFractionDigits will also be set to the new value. Negative input values are replaced with 0.Parameters: newValue - the maximum number of fraction digits to be shown. The concrete subclass may enforce an upper limit to this value appropriate to the numeric type being formatted. See Also: -
getMinimumFractionDigits
public int getMinimumFractionDigits()Returns the minimum number of digits allowed in the fraction portion of a number during formatting.Returns: the minimum number of digits See Also: -
setMinimumFractionDigits
public void setMinimumFractionDigits(int newValue)Sets the minimum number of digits allowed in the fraction portion of a number during formatting. minimumFractionDigits must be ≤ maximumFractionDigits. If the new value for minimumFractionDigits exceeds the current value of maximumFractionDigits, then maximumFractionDigits will also be set to the new value. Negative input values are replaced with 0.Parameters: newValue - the minimum number of fraction digits to be shown. The concrete subclass may enforce an upper limit to this value appropriate to the numeric type being formatted. See Also: -
getCurrency
Gets the currency used by this number format when formatting currency values. The initial value is derived in a locale dependent way. The returned value may be null if no valid currency could be determined and no currency has been set using setCurrency(Currency).Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses should override this method if currency formatting is desired. Returns: the currency used by this number format, or null Throws: UnsupportedOperationException - if the implementation of this method does not support this operation Since: 1.4 -
setCurrency
Sets the currency used by this number format when formatting currency values. This does not update the minimum or maximum number of fraction digits used by the number format.Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses should override this method if currency formatting is desired. Parameters: currency - the new currency to be used by this number format Throws: NullPointerException - if currency is null UnsupportedOperationException - if the implementation of this method does not support this operation Since: 1.4 -
getRoundingMode
Gets the RoundingMode used in this NumberFormat.Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses which handle different rounding modes should override this method. Returns: The RoundingMode used for this NumberFormat. Throws: UnsupportedOperationException - if the implementation of this method does not support this operation Since: 1.6 See Also: -
setRoundingMode
Sets the RoundingMode used in this NumberFormat.Implementation Requirements: The default implementation always throws UnsupportedOperationException. Subclasses which handle different rounding modes should override this method. Parameters: roundingMode - The RoundingMode to be used Throws: NullPointerException - if roundingMode is null UnsupportedOperationException - if the implementation of this method does not support this operation Since: 1.6 See Also:
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples. Other versions.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2026, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.