|
56 | 56 |
|
57 | 57 | /**
|
58 | 58 | * {@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 |
63 | 63 | * numbers (123.4), scientific notation (1.23E4), percentages (12%), and
|
64 |
| - * currency amounts ($123). All of these can be localized. |
| 64 | + * currency amounts ($123). |
65 | 65 | *
|
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> |
73 | 67 | *
|
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 | + * } |
78 | 93 | * }
|
79 |
| - * }</blockquote> |
80 | 94 | *
|
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. |
87 | 95 | *
|
88 |
| - * <h2 id="patterns">Patterns</h2> |
| 96 | + * <h2 id="formatting">Formatting and Parsing</h2> |
| 97 | + * <h3 id="rounding">Rounding</h3> |
89 | 98 | *
|
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 | + * "∞" ({@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. |
98 | 157 | *
|
99 | 158 | * <p> {@code DecimalFormat} patterns have the following syntax:
|
100 | 159 | * <blockquote><pre>
|
|
135 | 194 | * 0 <i>MinimumExponent<sub>opt</sub></i>
|
136 | 195 | * </pre></blockquote>
|
137 | 196 | *
|
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 |
| - * |
169 | 197 | * <h3><a id="special_pattern_character">Special Pattern Characters</a></h3>
|
170 | 198 | *
|
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. |
174 | 201 | * They must be quoted, unless noted otherwise, if they are to appear in the
|
175 | 202 | * prefix or suffix as literals.
|
176 | 203 | *
|
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)}. |
182 | 212 | *
|
183 | 213 | * <blockquote>
|
184 | 214 | * <table class="striped">
|
185 | 215 | * <caption style="display:none">Chart showing symbol, location, localized, and meaning.</caption>
|
186 | 216 | * <thead>
|
187 | 217 | * <tr>
|
188 | 218 | * <th scope="col" style="text-align:left">Symbol
|
| 219 | + * <th scope="col" style="text-align:left">Localized Symbol |
189 | 220 | * <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 |
192 | 222 | * </thead>
|
193 | 223 | * <tbody>
|
194 |
| - * <tr style="vertical-align:top"> |
| 224 | + * <tr> |
195 | 225 | * <th scope="row">{@code 0}
|
| 226 | + * <td>{@link DecimalFormatSymbols#getZeroDigit()} |
196 | 227 | * <td>Number
|
197 |
| - * <td>Yes |
198 | 228 | * <td>Digit
|
199 |
| - * <tr style="vertical-align: top"> |
| 229 | + * <tr> |
200 | 230 | * <th scope="row">{@code #}
|
| 231 | + * <td>{@link DecimalFormatSymbols#getDigit()} |
201 | 232 | * <td>Number
|
202 |
| - * <td>Yes |
203 | 233 | * <td>Digit, zero shows as absent
|
204 |
| - * <tr style="vertical-align:top"> |
| 234 | + * <tr> |
205 | 235 | * <th scope="row">{@code .}
|
| 236 | + * <td>{@link DecimalFormatSymbols#getDecimalSeparator()} |
206 | 237 | * <td>Number
|
207 |
| - * <td>Yes |
208 | 238 | * <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()} |
211 | 242 | * <td>Number
|
212 |
| - * <td>Yes |
213 | 243 | * <td>Minus sign
|
214 |
| - * <tr style="vertical-align:top"> |
| 244 | + * <tr> |
215 | 245 | * <th scope="row">{@code ,}
|
| 246 | + * <td>{@link DecimalFormatSymbols#getGroupingSeparator()} |
216 | 247 | * <td>Number
|
217 |
| - * <td>Yes |
218 | 248 | * <td>Grouping separator or monetary grouping separator
|
219 |
| - * <tr style="vertical-align: top"> |
| 249 | + * <tr> |
220 | 250 | * <th scope="row">{@code E}
|
| 251 | + * <td>{@link DecimalFormatSymbols#getExponentSeparator()} |
221 | 252 | * <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> |
226 | 256 | * <th scope="row">{@code ;}
|
| 257 | + * <td>{@link DecimalFormatSymbols#getPatternSeparator()} |
227 | 258 | * <td>Subpattern boundary
|
228 |
| - * <td>Yes |
229 | 259 | * <td>Separates positive and negative subpatterns
|
230 |
| - * <tr style="vertical-align: top"> |
| 260 | + * <tr> |
231 | 261 | * <th scope="row">{@code %}
|
| 262 | + * <td>{@link DecimalFormatSymbols#getPercent()} |
232 | 263 | * <td>Prefix or suffix
|
233 |
| - * <td>Yes |
234 | 264 | * <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">‰ ({@code U+2030}) |
| 267 | + * <td>{@link DecimalFormatSymbols#getPerMill()} |
237 | 268 | * <td>Prefix or suffix
|
238 |
| - * <td>Yes |
239 | 269 | * <td>Multiply by 1000 and show as per mille value
|
240 |
| - * <tr style="vertical-align: top"> |
| 270 | + * <tr> |
241 | 271 | * <th scope="row">¤ ({@code U+00A4})
|
| 272 | + * <td> n/a (not localized) |
242 | 273 | * <td>Prefix or suffix
|
243 |
| - * <td>No |
244 | 274 | * <td>Currency sign, replaced by currency symbol. If
|
245 | 275 | * doubled, replaced by international currency symbol.
|
246 | 276 | * If present in a pattern, the monetary decimal/grouping separators
|
247 | 277 | * 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) |
250 | 281 | * <td>Prefix or suffix
|
251 |
| - * <td>No |
252 | 282 | * <td>Used to quote special characters in a prefix or suffix,
|
253 | 283 | * for example, {@code "'#'#"} formats 123 to
|
254 | 284 | * {@code "#123"}. To create a single quote
|
|
257 | 287 | * </table>
|
258 | 288 | * </blockquote>
|
259 | 289 | *
|
| 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 | + * |
260 | 333 | * <h3 id="scientific_notation">Scientific Notation</h3>
|
261 | 334 | *
|
262 | 335 | * <p>Numbers in scientific notation are expressed as the product of a mantissa
|
|
339 | 412 | * <li>Exponential patterns may not contain grouping separators.
|
340 | 413 | * </ul>
|
341 | 414 | *
|
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) |
427 | 417 | * @see <a href="http://docs.oracle.com/javase/tutorial/i18n/format/decimalFormat.html">Java Tutorial</a>
|
428 | 418 | * @see NumberFormat
|
429 | 419 | * @see DecimalFormatSymbols
|
430 | 420 | * @see ParsePosition
|
| 421 | + * @see Locale |
431 | 422 | * @author Mark Davis
|
432 | 423 | * @author Alan Liu
|
433 | 424 | * @since 1.1
|
|
0 commit comments