Skip to content

Commit f60798a

Browse files
author
Justin Lu
committedApr 23, 2024
8329222: java.text.NumberFormat (and subclasses) spec updates
Reviewed-by: naoto
1 parent 2555166 commit f60798a

File tree

3 files changed

+392
-362
lines changed

3 files changed

+392
-362
lines changed
 

‎src/java.base/share/classes/java/text/CompactNumberFormat.java

+117-95
Original file line numberDiff line numberDiff line change
@@ -47,112 +47,149 @@
4747
/**
4848
* <p>
4949
* {@code CompactNumberFormat} is a concrete subclass of {@code NumberFormat}
50-
* that formats a decimal number in its compact form.
51-
*
52-
* The compact number formatting is designed for the environment where the space
53-
* is limited, and the formatted string can be displayed in that limited space.
54-
* It is defined by LDML's specification for
50+
* that formats a decimal number in a localized compact form.
51+
* Compact number formatting is designed for an environment with limited space.
52+
* For example, displaying the formatted number {@code 7M} instead of {@code
53+
* 7,000,000.00} in the {@link java.util.Locale#US US locale}. The {@code
54+
* CompactNumberFormat} class is defined by LDML's specification for
5555
* <a href = "http://unicode.org/reports/tr35/tr35-numbers.html#Compact_Number_Formats">
56-
* Compact Number Formats</a>. A compact number formatting refers
57-
* to the representation of a number in a shorter form, based on the patterns
58-
* provided for a given locale.
56+
* Compact Number Formats</a>.
5957
*
60-
* <p>
61-
* For example:
62-
* <br>In the {@link java.util.Locale#US US locale}, {@code 1000} can be formatted
63-
* as {@code "1K"}, and {@code 1000000} as {@code "1M"}, depending upon the
64-
* {@linkplain ##compact_number_style style} used.
65-
* <br>In the {@code "hi_IN"} locale, {@code 1000} can be formatted as
66-
* "1 \u0939\u091C\u093C\u093E\u0930", and {@code 50000000} as "5 \u0915.",
67-
* depending upon the {@linkplain ##compact_number_style style} used.
58+
* <h2>Getting a CompactNumberFormat</h2>
59+
* To get a compact number format, use one of the ways listed below.
60+
* <ul>
61+
* <li> Use the factory method {@link NumberFormat#getCompactNumberInstance()}
62+
* to obtain a format for the default locale with
63+
* {@link NumberFormat.Style#SHORT SHORT} style.
64+
* <li> Use the factory methood {@link NumberFormat#getCompactNumberInstance(Locale, Style)}
65+
* to obtain a format for a different locale
66+
* and to control the {@linkplain ##compact_number_style Style}.
67+
* <li> Use one of the {@code CompactNumberFormat} constructors, for example, {@link
68+
* CompactNumberFormat#CompactNumberFormat(String, DecimalFormatSymbols, String[])
69+
* CompactNumberFormat(decimalPattern, symbols, compactPatterns)}, to obtain a
70+
* {@code CompactNumberFormat} with further customization.
71+
* </ul>
72+
* <p>If a standard compact format for a given locale and {@link
73+
* ##compact_number_style style} is desired, it is recommended to use one of the
74+
* NumberFormat factory methods listed above. To use an instance method
75+
* defined by {@code CompactNumberFormat}, the {@code NumberFormat} returned by
76+
* these factory methods should be type checked before converted to {@code CompactNumberFormat}.
77+
* If the installed locale-sensitive service implementation does not support
78+
* the given {@code Locale}, the parent locale chain will be looked up, and
79+
* a {@code Locale} used that is supported.
6880
*
69-
* <p>
70-
* To obtain a {@code CompactNumberFormat} for a locale, use one
71-
* of the factory methods given by {@code NumberFormat} for compact number
72-
* formatting. For example,
73-
* {@link NumberFormat#getCompactNumberInstance(Locale, Style)}.
81+
* <h2><a id="compact_number_style">Style</a></h2>
82+
* When using {@link NumberFormat#getCompactNumberInstance(Locale, Style)}, a
83+
* compact form can be retrieved with either a {@link NumberFormat.Style#SHORT
84+
* SHORT} or {@link NumberFormat.Style#LONG LONG} style.
85+
* For example, a {@link NumberFormat.Style#SHORT SHORT} style compact number instance in
86+
* the {@link java.util.Locale#US US locale} formats {@code 10000} as {@code
87+
* "10K"}. However, a {@link NumberFormat.Style#LONG LONG} style instance in
88+
* the same locale formats {@code 10000} as {@code "10 thousand"}.
7489
*
75-
* <blockquote>{@snippet lang=java :
76-
* NumberFormat fmt = NumberFormat.getCompactNumberInstance(
77-
* Locale.forLanguageTag("hi-IN"), NumberFormat.Style.SHORT);
78-
* String result = fmt.format(1000);
79-
* }</blockquote>
90+
* <h2>Using CompactNumberFormat</h2>
91+
* The following is an example of formatting and parsing in a localized manner,
8092
*
81-
* <h2><a id="compact_number_style">Style</a></h2>
82-
* <p>
83-
* A number can be formatted in the compact forms with two different
84-
* styles, {@link NumberFormat.Style#SHORT SHORT}
85-
* and {@link NumberFormat.Style#LONG LONG}. Use
86-
* {@link NumberFormat#getCompactNumberInstance(Locale, Style)} for formatting and
87-
* parsing a number in {@link NumberFormat.Style#SHORT SHORT} or
88-
* {@link NumberFormat.Style#LONG LONG} compact form,
89-
* where the given {@code Style} parameter requests the desired
90-
* format. A {@link NumberFormat.Style#SHORT SHORT} style
91-
* compact number instance in the {@link java.util.Locale#US US locale} formats
92-
* {@code 10000} as {@code "10K"}. However, a
93-
* {@link NumberFormat.Style#LONG LONG} style instance in same locale
94-
* formats {@code 10000} as {@code "10 thousand"}.
93+
* {@snippet lang=java :
94+
* NumberFormat compactFormat = NumberFormat.getCompactNumberInstance(Locale.US, NumberFormat.Style.SHORT);
95+
* compactFormat.format(1000); // returns "1K"
96+
* compactFormat.parse("1K"); // returns 1000
97+
* }
98+
*
99+
* <h2 id="formatting">Formatting</h2>
100+
* The default formatting behavior returns a formatted string with no fractional
101+
* digits, however users can use the {@link #setMinimumFractionDigits(int)}
102+
* method to include the fractional part.
103+
* The number {@code 1000.0} or {@code 1000} is formatted as {@code "1K"}
104+
* not {@code "1.00K"} (in the {@link java.util.Locale#US US locale}). For this
105+
* reason, the patterns provided for formatting contain only the minimum
106+
* integer digits, prefix and/or suffix, but no fractional part.
107+
* For example, patterns used are {@code {"", "", "", 0K, 00K, ...}}. If the pattern
108+
* selected for formatting a number is {@code "0"} (special pattern),
109+
* either explicit or defaulted, then the general number formatting provided by
110+
* {@link java.text.DecimalFormat DecimalFormat}
111+
* for the specified locale is used.
112+
*
113+
* <h3>Rounding</h3>
114+
* {@code CompactNumberFormat} provides rounding modes defined in
115+
* {@link java.math.RoundingMode} for formatting. By default, it uses
116+
* {@link java.math.RoundingMode#HALF_EVEN RoundingMode.HALF_EVEN}.
117+
*
118+
* <h2>Parsing</h2>
119+
* The default parsing behavior does not allow a grouping separator until
120+
* grouping used is set to {@code true} by using
121+
* {@link #setGroupingUsed(boolean)}. The parsing of the fractional part
122+
* depends on the {@link #isParseIntegerOnly()}. For example, if the
123+
* parse integer only is set to true, then the fractional part is skipped.
95124
*
96125
* <h2><a id="compact_number_patterns">Compact Number Patterns</a></h2>
97126
* <p>
98-
* The compact number patterns are represented in a series of patterns where each
99-
* pattern is used to format a range of numbers. An example of
100-
* {@link NumberFormat.Style#SHORT SHORT} styled compact number patterns
127+
* The {@code compactPatterns} in {@link
128+
* CompactNumberFormat#CompactNumberFormat(String, DecimalFormatSymbols, String[])
129+
* CompactNumberFormat(decimalPattern, symbols, compactPatterns)} are represented
130+
* as a series of strings, where each string is a {@link ##compact_number_syntax
131+
* pattern} that is used to format a range of numbers.
132+
*
133+
* <p> An example of the {@link NumberFormat.Style#SHORT SHORT} styled compact number patterns
101134
* for the {@link java.util.Locale#US US locale} is {@code {"", "", "", "0K",
102135
* "00K", "000K", "0M", "00M", "000M", "0B", "00B", "000B", "0T", "00T", "000T"}},
103136
* ranging from {@code 10}<sup>{@code 0}</sup> to {@code 10}<sup>{@code 14}</sup>.
104137
* There can be any number of patterns and they are
105138
* strictly index based starting from the range {@code 10}<sup>{@code 0}</sup>.
106-
* For example, in the above patterns, pattern at index 3
107-
* ({@code "0K"}) is used for formatting {@code number >= 1000 and number < 10000},
108-
* pattern at index 4 ({@code "00K"}) is used for formatting
109-
* {@code number >= 10000 and number < 100000} and so on. In most of the locales,
110-
* patterns with the range
139+
* For example, in the above patterns, the pattern at index 3
140+
* ({@code "0K"}) is used for formatting a number in the range: {@code 1000 <= number < 10000},
141+
* index 4 ({@code "00K"}) for formatting a number the range: {@code 10000 <=
142+
* number < 100000}, and so forth.
143+
* <p>In most locales, patterns with the range
111144
* {@code 10}<sup>{@code 0}</sup>-{@code 10}<sup>{@code 2}</sup> are empty
112145
* strings, which implicitly means a special pattern {@code "0"}.
113146
* A special pattern {@code "0"} is used for any range which does not contain
114147
* a compact pattern. This special pattern can appear explicitly for any specific
115148
* range, or considered as a default pattern for an empty string.
116149
*
117-
* <p>
150+
* <h3>Negative Subpatterns</h3>
118151
* A compact pattern contains a positive and negative subpattern
119-
* separated by a subpattern boundary character {@code ';' (U+003B)},
152+
* separated by a subpattern boundary character {@code ';'},
120153
* for example, {@code "0K;-0K"}. Each subpattern has a prefix,
121154
* minimum integer digits, and suffix. The negative subpattern
122155
* is optional, if absent, then the positive subpattern prefixed with the
123-
* minus sign ({@code '-' U+002D HYPHEN-MINUS}) is used as the negative
156+
* minus sign {@code '-' (U+002D HYPHEN-MINUS)} is used as the negative
124157
* subpattern. That is, {@code "0K"} alone is equivalent to {@code "0K;-0K"}.
125158
* If there is an explicit negative subpattern, it serves only to specify
126159
* the negative prefix and suffix. The number of minimum integer digits,
127160
* and other characteristics are all the same as the positive pattern.
128161
* That means that {@code "0K;-00K"} produces precisely the same behavior
129162
* as {@code "0K;-0K"}.
130163
*
131-
* <p>
164+
* <h4>Escaping Special Characters</h4>
132165
* Many characters in a compact pattern are taken literally, they are matched
133166
* during parsing and output unchanged during formatting.
134167
* {@linkplain DecimalFormat##special_pattern_character Special characters},
135168
* on the other hand, stand for other characters, strings, or classes of
136-
* characters. They must be quoted, using single quote {@code ' (U+0027)}
169+
* characters. These characters must be quoted using single quotes {@code ' (U+0027)}
137170
* unless noted otherwise, if they are to appear in the prefix or suffix
138171
* as literals. For example, 0\u0915'.'.
139172
*
140173
* <h3>Plurals</h3>
174+
* <p> {@code CompactNumberFormat} support patterns for both singular and plural
175+
* compact forms. For the plural form, the {@code Pattern} should consist
176+
* of {@code PluralPattern}(s) separated by a space ' ' (U+0020) that are enumerated
177+
* within a pair of curly brackets '{' (U+007B) and '}' (U+007D).
178+
* In this format, each {@code PluralPattern} consists of its {@code count},
179+
* followed by a single colon {@code ':' (U+003A)} and a {@code SimplePattern}.
180+
* As a space is reserved for separating subsequent {@code PluralPattern}s, it must
181+
* be quoted to be used literally in either the {@code prefix} or {@code suffix}.
141182
* <p>
142-
* In case some localization requires compact number patterns to be different for
143-
* plurals, each singular and plural pattern can be enumerated within a pair of
144-
* curly brackets <code>'{' (U+007B)</code> and <code>'}' (U+007D)</code>, separated
145-
* by a space {@code ' ' (U+0020)}. If this format is used, each pattern needs to be
146-
* prepended by its {@code count}, followed by a single colon {@code ':' (U+003A)}.
147-
* If the pattern includes spaces literally, they must be quoted.
183+
* For example, while the pattern representing millions ({@code 10}<sup>{@code 6}
184+
* </sup>) in the US locale can be specified as the SimplePattern: {@code "0 Million"}, for the
185+
* German locale it can be specified as the PluralPattern:
186+
* {@code "{one:0' 'Million other:0' 'Millionen}"}.
187+
*
148188
* <p>
149-
* For example, the compact number pattern representing millions in German locale can be
150-
* specified as {@code "{one:0' 'Million other:0' 'Millionen}"}. The {@code count}
151-
* follows LDML's
189+
* <a id="compact_number_syntax">A compact pattern has the following syntax, with {@code count}</a>
190+
* following LDML's
152191
* <a href="https://unicode.org/reports/tr35/tr35-numbers.html#Language_Plural_Rules">
153-
* Language Plural Rules</a>.
154-
* <p>
155-
* A compact pattern has the following syntax:
192+
* Language Plural Rules</a>:
156193
* <blockquote><pre>
157194
* <i>Pattern:</i>
158195
* <i>SimplePattern</i>
@@ -179,37 +216,12 @@
179216
* 0 <i>MinimumInteger</i>
180217
* </pre></blockquote>
181218
*
182-
* <h2>Formatting</h2>
183-
* The default formatting behavior returns a formatted string with no fractional
184-
* digits, however users can use the {@link #setMinimumFractionDigits(int)}
185-
* method to include the fractional part.
186-
* The number {@code 1000.0} or {@code 1000} is formatted as {@code "1K"}
187-
* not {@code "1.00K"} (in the {@link java.util.Locale#US US locale}). For this
188-
* reason, the patterns provided for formatting contain only the minimum
189-
* integer digits, prefix and/or suffix, but no fractional part.
190-
* For example, patterns used are {@code {"", "", "", 0K, 00K, ...}}. If the pattern
191-
* selected for formatting a number is {@code "0"} (special pattern),
192-
* either explicit or defaulted, then the general number formatting provided by
193-
* {@link java.text.DecimalFormat DecimalFormat}
194-
* for the specified locale is used.
195-
*
196-
* <h2>Parsing</h2>
197-
* The default parsing behavior does not allow a grouping separator until
198-
* grouping used is set to {@code true} by using
199-
* {@link #setGroupingUsed(boolean)}. The parsing of the fractional part
200-
* depends on the {@link #isParseIntegerOnly()}. For example, if the
201-
* parse integer only is set to true, then the fractional part is skipped.
202-
*
203-
* <h2>Rounding</h2>
204-
* {@code CompactNumberFormat} provides rounding modes defined in
205-
* {@link java.math.RoundingMode} for formatting. By default, it uses
206-
* {@link java.math.RoundingMode#HALF_EVEN RoundingMode.HALF_EVEN}.
207-
*
208219
* @spec https://www.unicode.org/reports/tr35
209220
* Unicode Locale Data Markup Language (LDML)
210221
* @see NumberFormat.Style
211222
* @see NumberFormat
212223
* @see DecimalFormat
224+
* @see Locale
213225
* @since 12
214226
*/
215227
public final class CompactNumberFormat extends NumberFormat {
@@ -389,10 +401,19 @@ public final class CompactNumberFormat extends NumberFormat {
389401
* To obtain the instance of {@code CompactNumberFormat} with the standard
390402
* compact patterns for a {@code Locale} and {@code Style},
391403
* it is recommended to use the factory methods given by
392-
* {@code NumberFormat} for compact number formatting. For example,
393-
* {@link NumberFormat#getCompactNumberInstance(Locale, Style)}.
404+
* {@code NumberFormat} for compact number formatting.
405+
*
406+
* <p>Below is an example of using the constructor,
407+
*
408+
* {@snippet lang=java :
409+
* String[] compactPatterns = {"", "", "", "a lot"};
410+
* NumberFormat fmt = new CompactNumberFormat("00", DecimalFormatSymbols.getInstance(Locale.US), compactPatterns);
411+
* fmt.format(1); // returns "01"
412+
* fmt.format(1000); // returns "a lot"
413+
* }
394414
*
395-
* @param decimalPattern a decimal pattern for general number formatting
415+
* @param decimalPattern a {@linkplain DecimalFormat##patterns decimal pattern}
416+
* for general number formatting
396417
* @param symbols the set of symbols to be used
397418
* @param compactPatterns an array of
398419
* {@linkplain ##compact_number_patterns compact number patterns}
@@ -419,7 +440,8 @@ public CompactNumberFormat(String decimalPattern,
419440
* {@code NumberFormat} for compact number formatting. For example,
420441
* {@link NumberFormat#getCompactNumberInstance(Locale, Style)}.
421442
*
422-
* @param decimalPattern a decimal pattern for general number formatting
443+
* @param decimalPattern a {@linkplain DecimalFormat##patterns decimal pattern}
444+
* for general number formatting
423445
* @param symbols the set of symbols to be used
424446
* @param compactPatterns an array of
425447
* {@linkplain ##compact_number_patterns compact number patterns}

‎src/java.base/share/classes/java/text/DecimalFormat.java

+176-185
Original file line numberDiff line numberDiff line change
@@ -56,45 +56,104 @@
5656

5757
/**
5858
* {@code DecimalFormat} is a concrete subclass of
59-
* {@code NumberFormat} that formats decimal numbers. It has a variety of
60-
* features designed to make it possible to parse and format numbers in any
61-
* locale, including support for Western, Arabic, and Indic digits. It also
62-
* supports different kinds of numbers, including integers (123), fixed-point
59+
* {@code NumberFormat} that formats decimal numbers in a localized manner.
60+
* It has a variety of features designed to make it possible to parse and format
61+
* numbers in any locale, including support for Western, Arabic, and Indic digits.
62+
* It also supports different kinds of numbers, including integers (123), fixed-point
6363
* numbers (123.4), scientific notation (1.23E4), percentages (12%), and
64-
* currency amounts ($123). All of these can be localized.
64+
* currency amounts ($123).
6565
*
66-
* <p>To obtain a {@code NumberFormat} for a specific locale, including the
67-
* default locale, call one of {@code NumberFormat}'s factory methods, such
68-
* as {@code getInstance()}. In general, do not call the
69-
* {@code DecimalFormat} constructors directly, since the
70-
* {@code NumberFormat} factory methods may return subclasses other than
71-
* {@code DecimalFormat}. If you need to customize the format object, do
72-
* something like this:
66+
* <h2>Getting a DecimalFormat</h2>
7367
*
74-
* <blockquote>{@snippet lang=java :
75-
* NumberFormat numFormat = NumberFormat.getInstance(loc);
76-
* if (numFormat instanceof DecimalFormat decFormat) {
77-
* decFormat.setDecimalSeparatorAlwaysShown(true);
68+
* To obtain a standard decimal format for a specific locale, including the default locale,
69+
* it is recommended to call one of the {@code NumberFormat}
70+
* {@link NumberFormat##factory_methods factory methods}, such as {@link NumberFormat#getInstance()}.
71+
* These factory methods may not always return a {@code DecimalFormat}
72+
* depending on the locale-service provider implementation
73+
* installed. Thus, to use an instance method defined by {@code DecimalFormat},
74+
* the {@code NumberFormat} returned by the factory method should be
75+
* type checked before converted to {@code DecimalFormat}. If the installed locale-sensitive
76+
* service implementation does not support the given {@code Locale}, the parent
77+
* locale chain will be looked up, and a {@code Locale} used that is supported.
78+
*
79+
* <p>If the factory methods are not desired, use one of the constructors such
80+
* as {@link #DecimalFormat(String) DecimalFormat(String pattern)}. See the {@link
81+
* ##patterns Pattern} section for more information on the {@code pattern} parameter.
82+
*
83+
* <h2>Using DecimalFormat</h2>
84+
* The following is an example of formatting and parsing,
85+
* {@snippet lang=java :
86+
* NumberFormat nFmt = NumberFormat.getCurrencyInstance(Locale.US);
87+
* if (nFmt instanceof DecimalFormat dFmt) {
88+
* // pattern match to DecimalFormat to use setPositiveSuffix(String)
89+
* dFmt.setPositiveSuffix(" dollars");
90+
* dFmt.format(100000); // returns "$100,000.00 dollars"
91+
* dFmt.parse("$100,000.00 dollars"); // returns 100000
92+
* }
7893
* }
79-
* }</blockquote>
8094
*
81-
* <p>A {@code DecimalFormat} comprises a <em>pattern</em> and a set of
82-
* <em>symbols</em>. The pattern may be set directly using
83-
* {@code applyPattern()}, or indirectly using the API methods. The
84-
* symbols are stored in a {@code DecimalFormatSymbols} object. When using
85-
* the {@code NumberFormat} factory methods, the pattern and symbols are
86-
* read from localized {@code ResourceBundle}s.
8795
*
88-
* <h2 id="patterns">Patterns</h2>
96+
* <h2 id="formatting">Formatting and Parsing</h2>
97+
* <h3 id="rounding">Rounding</h3>
8998
*
90-
* Note: For any given {@code DecimalFormat} pattern, if the pattern is not
91-
* in scientific notation, the maximum number of integer digits will not be
92-
* derived from the pattern, and instead set to {@link Integer#MAX_VALUE}.
93-
* Otherwise, if the pattern is in scientific notation, the maximum number of
94-
* integer digits will be derived from the pattern. This derivation is detailed
95-
* in the {@link ##scientific_notation Scientific Notation} section. This behavior
96-
* is the typical end-user desire; {@link #setMaximumIntegerDigits(int)} can be
97-
* used to manually adjust the maximum integer digits.
99+
* When formatting, {@code DecimalFormat} can adjust its rounding using {@link
100+
* #setRoundingMode(RoundingMode)}. By default, it uses
101+
* {@link java.math.RoundingMode#HALF_EVEN RoundingMode.HALF_EVEN}.
102+
*
103+
* <h3>Digits</h3>
104+
*
105+
* When formatting, {@code DecimalFormat} uses the ten consecutive
106+
* characters starting with the localized zero digit defined in the
107+
* {@code DecimalFormatSymbols} object as digits.
108+
* <p>When parsing, these digits as well as all Unicode decimal digits, as
109+
* defined by {@link Character#digit Character.digit}, are recognized.
110+
*
111+
* <h3 id="digit_limits"> Integer and Fraction Digit Limits </h3>
112+
* @implSpec
113+
* When formatting a {@code Number} other than {@code BigInteger} and
114+
* {@code BigDecimal}, {@code 309} is used as the upper limit for integer digits,
115+
* and {@code 340} as the upper limit for fraction digits. This occurs, even if
116+
* one of the {@code DecimalFormat} getter methods, for example, {@link #getMinimumFractionDigits()}
117+
* returns a numerically greater value.
118+
*
119+
* <h3>Special Values</h3>
120+
* <ul>
121+
* <li><p><b>Not a Number</b> ({@code NaN}) is formatted as a string,
122+
* which is typically given as "NaN". This string is determined by {@link
123+
* DecimalFormatSymbols#getNaN()}. This is the only value for which the prefixes
124+
* and suffixes are not attached.
125+
*
126+
* <li><p><b>Infinity</b> is formatted as a string, which is typically given as
127+
* "&#8734;" ({@code U+221E}), with the positive or negative prefixes and suffixes
128+
* attached. This string is determined by {@link DecimalFormatSymbols#getInfinity()}.
129+
*
130+
* <li><p><b>Negative zero</b> ({@code "-0"}) parses to
131+
* <ul>
132+
* <li>{@code BigDecimal(0)} if {@code isParseBigDecimal()} is
133+
* true
134+
* <li>{@code Long(0)} if {@code isParseBigDecimal()} is false
135+
* and {@code isParseIntegerOnly()} is true
136+
* <li>{@code Double(-0.0)} if both {@code isParseBigDecimal()}
137+
* and {@code isParseIntegerOnly()} are false
138+
* </ul>
139+
* </ul>
140+
*
141+
* <h2><a id="synchronization">Synchronization</a></h2>
142+
*
143+
* <p>
144+
* Decimal formats are generally not synchronized.
145+
* It is recommended to create separate format instances for each thread.
146+
* If multiple threads access a format concurrently, it must be synchronized
147+
* externally.
148+
*
149+
* <h2 id="patterns">DecimalFormat Pattern</h2>
150+
*
151+
* A {@code DecimalFormat} comprises a <em>pattern</em> and a set of
152+
* <em>symbols</em>. The pattern may be set directly using {@code applyPattern()},
153+
* or indirectly using the various API methods. The symbols are stored in a {@code
154+
* DecimalFormatSymbols} object. When using the {@code NumberFormat} factory
155+
* methods, the pattern and symbols are created from the locale-sensitive service
156+
* implementation installed.
98157
*
99158
* <p> {@code DecimalFormat} patterns have the following syntax:
100159
* <blockquote><pre>
@@ -135,120 +194,91 @@
135194
* 0 <i>MinimumExponent<sub>opt</sub></i>
136195
* </pre></blockquote>
137196
*
138-
* <p>A {@code DecimalFormat} pattern contains a positive and negative
139-
* subpattern, for example, {@code "#,##0.00;(#,##0.00)"}. Each
140-
* subpattern has a prefix, numeric part, and suffix. The negative subpattern
141-
* is optional; if absent, then the positive subpattern prefixed with the
142-
* minus sign ({@code '-' U+002D HYPHEN-MINUS}) is used as the
143-
* negative subpattern. That is, {@code "0.00"} alone is equivalent to
144-
* {@code "0.00;-0.00"}. If there is an explicit negative subpattern, it
145-
* serves only to specify the negative prefix and suffix; the number of digits,
146-
* minimal digits, and other characteristics are all the same as the positive
147-
* pattern. That means that {@code "#,##0.0#;(#)"} produces precisely
148-
* the same behavior as {@code "#,##0.0#;(#,##0.0#)"}.
149-
*
150-
* <p>The prefixes, suffixes, and various symbols used for infinity, digits,
151-
* grouping separators, decimal separators, etc. may be set to arbitrary
152-
* values, and they will appear properly during formatting. However, care must
153-
* be taken that the symbols and strings do not conflict, or parsing will be
154-
* unreliable. For example, either the positive and negative prefixes or the
155-
* suffixes must be distinct for {@code DecimalFormat.parse()} to be able
156-
* to distinguish positive from negative values. (If they are identical, then
157-
* {@code DecimalFormat} will behave as if no negative subpattern was
158-
* specified.) Another example is that the decimal separator and grouping
159-
* separator should be distinct characters, or parsing will be impossible.
160-
*
161-
* <p>The grouping separator is commonly used for thousands, but in some
162-
* countries it separates ten-thousands. The grouping size is a constant number
163-
* of digits between the grouping characters, such as 3 for 100,000,000 or 4 for
164-
* 1,0000,0000. If you supply a pattern with multiple grouping characters, the
165-
* interval between the last one and the end of the integer is the one that is
166-
* used. So {@code "#,##,###,####"} == {@code "######,####"} ==
167-
* {@code "##,####,####"}.
168-
*
169197
* <h3><a id="special_pattern_character">Special Pattern Characters</a></h3>
170198
*
171-
* <p>Many characters in a pattern are taken literally; they are matched during
172-
* parsing and output unchanged during formatting. Special characters, on the
173-
* other hand, stand for other characters, strings, or classes of characters.
199+
* <p>The special characters in the table below are interpreted syntactically when
200+
* used in the DecimalFormat pattern.
174201
* They must be quoted, unless noted otherwise, if they are to appear in the
175202
* prefix or suffix as literals.
176203
*
177-
* <p>The characters listed here are used in non-localized patterns. Localized
178-
* patterns use the corresponding characters taken from this formatter's
179-
* {@code DecimalFormatSymbols} object instead, and these characters lose
180-
* their special status. Two exceptions are the currency sign and quote, which
181-
* are not localized.
204+
* <p> The characters in the {@code Symbol} column are used in non-localized
205+
* patterns. The corresponding characters in the {@code Localized Symbol} column are used
206+
* in localized patterns, with the characters in {@code Symbol} losing their
207+
* syntactical meaning. Two exceptions are the currency sign ({@code U+00A4}) and
208+
* quote ({@code U+0027}), which are not localized.
209+
* <p>
210+
* Non-localized patterns should be used when calling {@link #applyPattern(String)}.
211+
* Localized patterns should be used when calling {@link #applyLocalizedPattern(String)}.
182212
*
183213
* <blockquote>
184214
* <table class="striped">
185215
* <caption style="display:none">Chart showing symbol, location, localized, and meaning.</caption>
186216
* <thead>
187217
* <tr>
188218
* <th scope="col" style="text-align:left">Symbol
219+
* <th scope="col" style="text-align:left">Localized Symbol
189220
* <th scope="col" style="text-align:left">Location
190-
* <th scope="col" style="text-align:left">Localized?
191-
* <th scope="col" style="text-align:left">Meaning
221+
* <th scope="col" style="text-align:left;width:50%">Meaning
192222
* </thead>
193223
* <tbody>
194-
* <tr style="vertical-align:top">
224+
* <tr>
195225
* <th scope="row">{@code 0}
226+
* <td>{@link DecimalFormatSymbols#getZeroDigit()}
196227
* <td>Number
197-
* <td>Yes
198228
* <td>Digit
199-
* <tr style="vertical-align: top">
229+
* <tr>
200230
* <th scope="row">{@code #}
231+
* <td>{@link DecimalFormatSymbols#getDigit()}
201232
* <td>Number
202-
* <td>Yes
203233
* <td>Digit, zero shows as absent
204-
* <tr style="vertical-align:top">
234+
* <tr>
205235
* <th scope="row">{@code .}
236+
* <td>{@link DecimalFormatSymbols#getDecimalSeparator()}
206237
* <td>Number
207-
* <td>Yes
208238
* <td>Decimal separator or monetary decimal separator
209-
* <tr style="vertical-align: top">
210-
* <th scope="row">{@code -}
239+
* <tr>
240+
* <th scope="row">{@code - (U+002D)}
241+
* <td>{@link DecimalFormatSymbols#getMinusSign()}
211242
* <td>Number
212-
* <td>Yes
213243
* <td>Minus sign
214-
* <tr style="vertical-align:top">
244+
* <tr>
215245
* <th scope="row">{@code ,}
246+
* <td>{@link DecimalFormatSymbols#getGroupingSeparator()}
216247
* <td>Number
217-
* <td>Yes
218248
* <td>Grouping separator or monetary grouping separator
219-
* <tr style="vertical-align: top">
249+
* <tr>
220250
* <th scope="row">{@code E}
251+
* <td>{@link DecimalFormatSymbols#getExponentSeparator()}
221252
* <td>Number
222-
* <td>Yes
223-
* <td>Separates mantissa and exponent in scientific notation.
224-
* <em>Need not be quoted in prefix or suffix.</em>
225-
* <tr style="vertical-align:top">
253+
* <td>Separates mantissa and exponent in scientific notation. This value
254+
* is case sensistive. <em>Need not be quoted in prefix or suffix.</em>
255+
* <tr>
226256
* <th scope="row">{@code ;}
257+
* <td>{@link DecimalFormatSymbols#getPatternSeparator()}
227258
* <td>Subpattern boundary
228-
* <td>Yes
229259
* <td>Separates positive and negative subpatterns
230-
* <tr style="vertical-align: top">
260+
* <tr>
231261
* <th scope="row">{@code %}
262+
* <td>{@link DecimalFormatSymbols#getPercent()}
232263
* <td>Prefix or suffix
233-
* <td>Yes
234264
* <td>Multiply by 100 and show as percentage
235-
* <tr style="vertical-align:top">
236-
* <th scope="row">{@code U+2030}
265+
* <tr>
266+
* <th scope="row">&permil; ({@code U+2030})
267+
* <td>{@link DecimalFormatSymbols#getPerMill()}
237268
* <td>Prefix or suffix
238-
* <td>Yes
239269
* <td>Multiply by 1000 and show as per mille value
240-
* <tr style="vertical-align: top">
270+
* <tr>
241271
* <th scope="row">&#164; ({@code U+00A4})
272+
* <td> n/a (not localized)
242273
* <td>Prefix or suffix
243-
* <td>No
244274
* <td>Currency sign, replaced by currency symbol. If
245275
* doubled, replaced by international currency symbol.
246276
* If present in a pattern, the monetary decimal/grouping separators
247277
* are used instead of the decimal/grouping separators.
248-
* <tr style="vertical-align:top">
249-
* <th scope="row">{@code '}
278+
* <tr>
279+
* <th scope="row">{@code ' (U+0027)}
280+
* <td> n/a (not localized)
250281
* <td>Prefix or suffix
251-
* <td>No
252282
* <td>Used to quote special characters in a prefix or suffix,
253283
* for example, {@code "'#'#"} formats 123 to
254284
* {@code "#123"}. To create a single quote
@@ -257,6 +287,49 @@
257287
* </table>
258288
* </blockquote>
259289
*
290+
* <h3>Maximum Digits Derivation</h3>
291+
* For any given {@code DecimalFormat} pattern, if the pattern is not
292+
* in scientific notation, the maximum number of integer digits will not be
293+
* derived from the pattern, and instead set to {@link Integer#MAX_VALUE}.
294+
* Otherwise, if the pattern is in scientific notation, the maximum number of
295+
* integer digits will be derived from the pattern. This derivation is detailed
296+
* in the {@link ##scientific_notation Scientific Notation} section. {@link
297+
* #setMaximumIntegerDigits(int)} can be used to manually adjust the maximum
298+
* integer digits.
299+
*
300+
* <h3>Negative Subpatterns</h3>
301+
* A {@code DecimalFormat} pattern contains a positive and negative
302+
* subpattern, for example, {@code "#,##0.00;(#,##0.00)"}. Each
303+
* subpattern has a prefix, numeric part, and suffix. The negative subpattern
304+
* is optional; if absent, then the positive subpattern prefixed with the
305+
* minus sign {@code '-' (U+002D HYPHEN-MINUS)} is used as the
306+
* negative subpattern. That is, {@code "0.00"} alone is equivalent to
307+
* {@code "0.00;-0.00"}. If there is an explicit negative subpattern, it
308+
* serves only to specify the negative prefix and suffix; the number of digits,
309+
* minimal digits, and other characteristics are all the same as the positive
310+
* pattern. That means that {@code "#,##0.0#;(#)"} produces precisely
311+
* the same behavior as {@code "#,##0.0#;(#,##0.0#)"}.
312+
*
313+
* <p>The prefixes, suffixes, and various symbols used for infinity, digits,
314+
* grouping separators, decimal separators, etc. may be set to arbitrary
315+
* values, and they will appear properly during formatting. However, care must
316+
* be taken that the symbols and strings do not conflict, or parsing will be
317+
* unreliable. For example, either the positive and negative prefixes or the
318+
* suffixes must be distinct for {@code DecimalFormat.parse()} to be able
319+
* to distinguish positive from negative values. (If they are identical, then
320+
* {@code DecimalFormat} will behave as if no negative subpattern was
321+
* specified.) Another example is that the decimal separator and grouping
322+
* separator should be distinct characters, or parsing will be impossible.
323+
*
324+
* <h3>Grouping Separator</h3>
325+
* <p>The grouping separator is commonly used for thousands, but in some
326+
* locales it separates ten-thousands. The grouping size is a constant number
327+
* of digits between the grouping characters, such as 3 for 100,000,000 or 4 for
328+
* 1,0000,0000. If you supply a pattern with multiple grouping characters, the
329+
* interval between the last one and the end of the integer is the one that is
330+
* used. For example, {@code "#,##,###,####"} == {@code "######,####"} ==
331+
* {@code "##,####,####"}.
332+
*
260333
* <h3 id="scientific_notation">Scientific Notation</h3>
261334
*
262335
* <p>Numbers in scientific notation are expressed as the product of a mantissa
@@ -339,95 +412,13 @@
339412
* <li>Exponential patterns may not contain grouping separators.
340413
* </ul>
341414
*
342-
* <h3>Rounding</h3>
343-
*
344-
* {@code DecimalFormat} provides rounding modes defined in
345-
* {@link java.math.RoundingMode} for formatting. By default, it uses
346-
* {@link java.math.RoundingMode#HALF_EVEN RoundingMode.HALF_EVEN}.
347-
*
348-
* <h3>Digits</h3>
349-
*
350-
* For formatting, {@code DecimalFormat} uses the ten consecutive
351-
* characters starting with the localized zero digit defined in the
352-
* {@code DecimalFormatSymbols} object as digits. For parsing, these
353-
* digits as well as all Unicode decimal digits, as defined by
354-
* {@link Character#digit Character.digit}, are recognized.
355-
*
356-
* <h3 id="digit_limits"> Integer and Fraction Digit Limits </h3>
357-
*
358-
* @implSpec
359-
* When formatting a {@code Number} other than {@code BigInteger} and
360-
* {@code BigDecimal}, {@code 309} is used as the upper limit for integer digits,
361-
* and {@code 340} as the upper limit for fraction digits. This occurs, even if
362-
* one of the {@code DecimalFormat} getter methods, for example, {@link #getMinimumFractionDigits()}
363-
* returns a numerically greater value.
364-
*
365-
* <h4>Special Values</h4>
366-
*
367-
* <p>Not a Number({@code NaN}) is formatted as a string, which typically has a
368-
* single character {@code U+FFFD}. This string is determined by the
369-
* {@code DecimalFormatSymbols} object. This is the only value for which
370-
* the prefixes and suffixes are not used.
371-
*
372-
* <p>Infinity is formatted as a string, which typically has a single character
373-
* {@code U+221E}, with the positive or negative prefixes and suffixes
374-
* applied. The infinity string is determined by the
375-
* {@code DecimalFormatSymbols} object.
376-
*
377-
* <p>Negative zero ({@code "-0"}) parses to
378-
* <ul>
379-
* <li>{@code BigDecimal(0)} if {@code isParseBigDecimal()} is
380-
* true,
381-
* <li>{@code Long(0)} if {@code isParseBigDecimal()} is false
382-
* and {@code isParseIntegerOnly()} is true,
383-
* <li>{@code Double(-0.0)} if both {@code isParseBigDecimal()}
384-
* and {@code isParseIntegerOnly()} are false.
385-
* </ul>
386-
*
387-
* <h3><a id="synchronization">Synchronization</a></h3>
388-
*
389-
* <p>
390-
* Decimal formats are generally not synchronized.
391-
* It is recommended to create separate format instances for each thread.
392-
* If multiple threads access a format concurrently, it must be synchronized
393-
* externally.
394-
*
395-
* <h3>Example</h3>
396-
*
397-
* <blockquote>{@snippet lang=java :
398-
* // Print out a number using the localized number, integer, currency,
399-
* // and percent format for each locale
400-
* Locale[] locales = NumberFormat.getAvailableLocales();
401-
* double myNumber = -1234.56;
402-
* NumberFormat form;
403-
* for (int j = 0; j < 4; ++j) {
404-
* System.out.println("FORMAT");
405-
* for (Locale locale : locales) {
406-
* if (locale.getCountry().length() == 0) {
407-
* continue; // Skip language-only locales
408-
* }
409-
* System.out.print(locale.getDisplayName());
410-
* form = switch (j) {
411-
* case 0 -> NumberFormat.getInstance(locale);
412-
* case 1 -> NumberFormat.getIntegerInstance(locale);
413-
* case 2 -> NumberFormat.getCurrencyInstance(locale);
414-
* default -> NumberFormat.getPercentInstance(locale);
415-
* };
416-
* if (form instanceof DecimalFormat decForm) {
417-
* System.out.print(": " + decForm.toPattern());
418-
* }
419-
* System.out.print(" -> " + form.format(myNumber));
420-
* try {
421-
* System.out.println(" -> " + form.parse(form.format(myNumber)));
422-
* } catch (ParseException e) {}
423-
* }
424-
* }
425-
* }</blockquote>
426-
*
415+
* @spec https://www.unicode.org/reports/tr35
416+
* Unicode Locale Data Markup Language (LDML)
427417
* @see <a href="http://docs.oracle.com/javase/tutorial/i18n/format/decimalFormat.html">Java Tutorial</a>
428418
* @see NumberFormat
429419
* @see DecimalFormatSymbols
430420
* @see ParsePosition
421+
* @see Locale
431422
* @author Mark Davis
432423
* @author Alan Liu
433424
* @since 1.1

‎src/java.base/share/classes/java/text/NumberFormat.java

+99-82
Original file line numberDiff line numberDiff line change
@@ -59,102 +59,110 @@
5959
/**
6060
* {@code NumberFormat} is the abstract base class for all number
6161
* formats. This class provides the interface for formatting and parsing
62-
* numbers. {@code NumberFormat} also provides methods for determining
63-
* which locales have number formats, and what their names are.
62+
* numbers in a localized manner. This enables code that can be completely
63+
* independent of the locale conventions for decimal points, thousands-separators,
64+
* the particular decimal digits used, or whether the number format is even
65+
* decimal. For example, this class could be used within an application to
66+
* produce a number in a currency format according to the conventions of the desired
67+
* locale.
6468
*
65-
* <p>
66-
* {@code NumberFormat} helps you to format and parse numbers for any locale.
67-
* Your code can be completely independent of the locale conventions for
68-
* decimal points, thousands-separators, or even the particular decimal
69-
* digits used, or whether the number format is even decimal.
69+
* <h2 id="factory_methods">Getting a NumberFormat</h2>
70+
* To get a {@code NumberFormat} for the default Locale, use one of the static
71+
* factory methods that return a concrete subclass of {@code NumberFormat}.
72+
* The following formats all provide an example of formatting the {@code Number}
73+
* "2000.50" with the {@link java.util.Locale#US US} locale as the default locale.
74+
* <ul>
75+
* <li> Use {@link #getInstance()} or {@link #getNumberInstance()} to get
76+
* a decimal format. For example, {@code "2,000.5"}.
77+
* <li> Use {@link #getIntegerInstance()} to get an integer number format.
78+
* For example, {@code "2,000"}.
79+
* <li> Use {@link #getCurrencyInstance} to get a currency number format.
80+
* For example, {@code "$2,000.50"}.
81+
* <li> Use {@link #getCompactNumberInstance} to get a compact number format.
82+
* For example, {@code "2K"}.
83+
* <li> Use {@link #getPercentInstance} to get a format for displaying percentages.
84+
* For example, {@code "200,050%"}.
85+
* </ul>
7086
*
71-
* <p>
72-
* To format a number for the current Locale, use one of the factory
73-
* class methods:
74-
* <blockquote>
75-
* {@snippet lang=java :
76-
* myString = NumberFormat.getInstance().format(myNumber);
77-
* }
78-
* </blockquote>
79-
* If you are formatting multiple numbers, it is
80-
* more efficient to get the format and use it multiple times so that
81-
* the system doesn't have to fetch the information about the local
82-
* language and country conventions multiple times.
83-
* <blockquote>
84-
* {@snippet lang=java :
85-
* NumberFormat nf = NumberFormat.getInstance();
86-
* for (var myNumber : numbers) {
87-
* output.println(nf.format(myNumber) + "; ");
88-
* }
89-
* }
90-
* </blockquote>
91-
* To format a number for a different Locale, specify it in the
92-
* call to {@code getInstance}.
93-
* <blockquote>
94-
* {@snippet lang=java :
95-
* NumberFormat nf = NumberFormat.getInstance(Locale.FRENCH);
96-
* }
97-
* </blockquote>
87+
* Alternatively, if a {@code NumberFormat} for a different locale is required, use
88+
* one of the overloaded factory methods that take {@code Locale} as a parameter,
89+
* for example, {@link #getIntegerInstance(Locale)}. If the installed locale-sensitive
90+
* service implementation does not support the given {@code Locale}, the parent
91+
* locale chain will be looked up, and a {@code Locale} used that is supported.
9892
*
99-
* <p>If the locale contains "nu" (numbers) and/or "rg" (region override)
93+
* <h3>Locale Extensions</h3>
94+
* Formatting behavior can be changed when using a locale that contains any of the following
10095
* <a href="../util/Locale.html#def_locale_extension">Unicode extensions</a>,
101-
* the decimal digits, and/or the country used for formatting are overridden.
96+
* <ul>
97+
* <li> "nu"
98+
* (<a href="https://unicode.org/reports/tr35/#UnicodeNumberSystemIdentifier">
99+
* Numbering System</a>) - Overrides the decimal digits used
100+
* <li> "rg"
101+
* (<a href="https://unicode.org/reports/tr35/#RegionOverride">
102+
* Region Override</a>) - Overrides the country used
103+
* <li> "cf"
104+
* (<a href="https://www.unicode.org/reports/tr35/tr35.html#UnicodeCurrencyFormatIdentifier">
105+
* Currency Format style</a>) - Overrides the Currency Format style used
106+
* </ul>
107+
* <p>
102108
* If both "nu" and "rg" are specified, the decimal digits from the "nu"
103109
* extension supersedes the implicit one from the "rg" extension.
110+
* Although <a href="../util/Locale.html#def_locale_extension">Unicode extensions</a>
111+
* defines various keys and values, actual locale-sensitive service implementations
112+
* in a Java Runtime Environment might not support any particular Unicode locale
113+
* attributes or key/type pairs.
114+
* <p>Below is an example of a "US" locale currency format with accounting style,
115+
* <blockquote>{@code NumberFormat.getCurrencyInstance(Locale.forLanguageTag("en-US-u-cf-account"));}</blockquote>
116+
* With this style, a negative value is formatted enclosed in parentheses, instead
117+
* of being prepended with a minus sign.
104118
*
105-
* <p>You can also use a {@code NumberFormat} to parse numbers:
106-
* <blockquote>
119+
* <h2>Using NumberFormat</h2>
120+
* The following is an example of formatting and parsing in a localized fashion,
107121
* {@snippet lang=java :
108-
* myNumber = nf.parse(myString);
122+
* NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(Locale.US);
123+
* currencyFormat.format(100000); // returns "$100,000.00"
124+
* currencyFormat.parse("$100,000.00"); // returns 100000
109125
* }
110-
* </blockquote>
111-
* Use {@code getInstance} or {@code getNumberInstance} to get the
112-
* normal number format. Use {@code getIntegerInstance} to get an
113-
* integer number format. Use {@code getCurrencyInstance} to get the
114-
* currency number format. Use {@code getCompactNumberInstance} to get the
115-
* compact number format to format a number in shorter form. For example,
116-
* {@code 2000} can be formatted as {@code "2K"} in
117-
* {@link java.util.Locale#US US locale}. Use {@code getPercentInstance}
118-
* to get a format for displaying percentages. With this format, a fraction
119-
* like 0.53 is displayed as 53%.
120126
*
121-
* <p>
122-
* You can also control the display of numbers with such methods as
123-
* {@code setMinimumFractionDigits}.
124-
* If you want even more control over the format or parsing,
125-
* or want to give your users more control,
126-
* you can try casting the {@code NumberFormat} you get from the factory methods
127-
* to a {@code DecimalFormat} or {@code CompactNumberFormat} depending on
128-
* the factory method used. This will work for the vast majority of locales;
129-
* just remember to put it in a {@code try} block in case you encounter
130-
* an unusual one.
127+
* <h2>Customizing NumberFormat</h2>
128+
* {@code NumberFormat} provides API to customize formatting and parsing behavior,
129+
* <ul>
130+
* <li> {@link #setParseIntegerOnly(boolean)}; when {@code true}, will only return the
131+
* integer portion of the number parsed from the String.
132+
* <li> {@link #setMinimumFractionDigits(int)}; Use to adjust the expected digits when
133+
* formatting. Use any of the other minimum/maximum or fraction/integer setter methods
134+
* in the same manner.
135+
* <li> {@link #setGroupingUsed(boolean)}; when {@code true}, formatted numbers will be displayed
136+
* with grouping separators. Additionally, when {@code false}, parsing will not expect
137+
* grouping separators in the parsed String.
138+
* <li> {@link #setStrict(boolean)}; when {@code true}, parsing will be done strictly.
139+
* The behavior of strict parsing should be referred to in the implementing
140+
* {@code NumberFormat} subclass.
141+
* </ul>
131142
*
132143
* <p>
133-
* NumberFormat and DecimalFormat are designed such that some controls
134-
* work for formatting and others work for parsing. The following is
135-
* the detailed description for each these control methods,
136-
* <p>
137-
* setParseIntegerOnly : only affects parsing, e.g.
138-
* if true, "3456.78" &rarr; 3456 (and leaves the parse position just after index 6)
139-
* if false, "3456.78" &rarr; 3456.78 (and leaves the parse position just after index 8)
140-
* This is independent of formatting. If you want to not show a decimal point
141-
* where there might be no digits after the decimal point, use
142-
* setDecimalSeparatorAlwaysShown.
143-
* <p>
144-
* setDecimalSeparatorAlwaysShown : only affects formatting, and only where
145-
* there might be no digits after the decimal point, such as with a pattern
146-
* like "#,##0.##", e.g.,
147-
* if true, 3456.00 &rarr; "3,456."
148-
* if false, 3456.00 &rarr; "3456"
149-
* This is independent of parsing. If you want parsing to stop at the decimal
150-
* point, use setParseIntegerOnly.
144+
* To provide more control over formatting or parsing behavior, type checking can
145+
* be done to safely convert to an implementing subclass of {@code NumberFormat}; this
146+
* provides additional methods defined by the subclass.
147+
* For example,
148+
* {@snippet lang=java :
149+
* NumberFormat nFmt = NumberFormat.getInstance(Locale.US);
150+
* if (nFmt instanceof DecimalFormat dFmt) {
151+
* dFmt.setDecimalSeparatorAlwaysShown(true);
152+
* dFmt.format(100); // returns "100."
153+
* }
154+
* }
155+
* The {@code NumberFormat} subclass returned by the factory methods is dependent
156+
* on the locale-service provider implementation installed, and may not always
157+
* be {@link DecimalFormat} or {@link CompactNumberFormat}.
158+
*
151159
* <p>
152160
* You can also use forms of the {@code parse} and {@code format}
153161
* methods with {@code ParsePosition} and {@code FieldPosition} to
154162
* allow you to:
155163
* <ul>
156-
* <li> progressively parse through pieces of a string
157-
* <li> align the decimal point and other areas
164+
* <li> Progressively parse through pieces of a string
165+
* <li> Align the decimal point and other areas
158166
* </ul>
159167
* For example, you can align numbers in two ways:
160168
* <ol>
@@ -197,15 +205,20 @@
197205
* If multiple threads access a format concurrently, it must be synchronized
198206
* externally.
199207
*
200-
* @implSpec The {@link #format(double, StringBuffer, FieldPosition)},
208+
* @implSpec
209+
* Null Parameter Handling
210+
* <ul>
211+
* <li> The {@link #format(double, StringBuffer, FieldPosition)},
201212
* {@link #format(long, StringBuffer, FieldPosition)} and
202213
* {@link #parse(String, ParsePosition)} methods may throw
203214
* {@code NullPointerException}, if any of their parameter is {@code null}.
204215
* The subclass may provide its own implementation and specification about
205216
* {@code NullPointerException}.
217+
* </ul>
206218
*
207-
* <p>
208-
* The default implementation provides rounding modes defined
219+
* Default RoundingMode
220+
* <ul>
221+
* <li> The default implementation provides rounding modes defined
209222
* in {@link java.math.RoundingMode} for formatting numbers. It
210223
* uses the {@linkplain java.math.RoundingMode#HALF_EVEN
211224
* round half-even algorithm}. To change the rounding mode use
@@ -214,10 +227,14 @@
214227
* configured to round floating point numbers using half-even
215228
* rounding (see {@link java.math.RoundingMode#HALF_EVEN
216229
* RoundingMode.HALF_EVEN}) for formatting.
230+
* </ul>
217231
*
232+
* @spec https://www.unicode.org/reports/tr35
233+
* Unicode Locale Data Markup Language (LDML)
218234
* @see DecimalFormat
219235
* @see ChoiceFormat
220236
* @see CompactNumberFormat
237+
* @see Locale
221238
* @author Mark Davis
222239
* @author Helena Shih
223240
* @since 1.1

0 commit comments

Comments
 (0)
Please sign in to comment.