230
230
* implementations in a Java Runtime Environment might not support any
231
231
* particular Unicode locale attributes or key/type pairs.
232
232
*
233
- * <h3>Creating a Locale</h3>
233
+ * <h3><a id="ObtainingLocale">Obtaining a Locale</a> </h3>
234
234
*
235
- * <p>There are several different ways to create a {@code Locale}
235
+ * <p>There are several ways to obtain a {@code Locale}
236
236
* object.
237
237
*
238
238
* <h4>Builder</h4>
239
239
*
240
240
* <p>Using {@link Builder} you can construct a {@code Locale} object
241
241
* that conforms to BCP 47 syntax.
242
242
*
243
- * <h4>Constructors</h4>
244
- *
245
- * <p>The {@code Locale} class provides three constructors:
246
- * <blockquote>
247
- * <pre>
248
- * {@link #Locale(String language)}
249
- * {@link #Locale(String language, String country)}
250
- * {@link #Locale(String language, String country, String variant)}
251
- * </pre>
252
- * </blockquote>
253
- * These constructors allow you to create a {@code Locale} object
254
- * with language, country and variant, but you cannot specify
255
- * script or extensions.
256
- *
257
243
* <h4>Factory Methods</h4>
258
244
*
259
- * <p>The method {@link #forLanguageTag} creates a {@code Locale}
260
- * object for a well-formed BCP 47 language tag.
245
+ * <p>The method {@link #forLanguageTag} obtains a {@code Locale}
246
+ * object for a well-formed BCP 47 language tag. The method
247
+ * {@link #of(String, String, String)} and its overloads obtain a
248
+ * {@code Locale} object from given {@code language}, {@code country},
249
+ * and/or {@code variant} defined above.
261
250
*
262
251
* <h4>Locale Constants</h4>
263
252
*
264
253
* <p>The {@code Locale} class provides a number of convenient constants
265
- * that you can use to create {@code Locale} objects for commonly used
266
- * locales. For example, the following creates a {@code Locale} object
267
- * for the United States:
268
- * <blockquote>
269
- * <pre>
270
- * Locale.US
271
- * </pre>
272
- * </blockquote>
254
+ * that you can use to obtain {@code Locale} objects for commonly used
255
+ * locales. For example, {@code Locale.US} is the {@code Locale} object
256
+ * for the United States.
273
257
*
274
258
* <h3><a id="LocaleMatching">Locale Matching</a></h3>
275
259
*
344
328
*
345
329
* <h3>Use of Locale</h3>
346
330
*
347
- * <p>Once you've created a {@code Locale} you can query it for information
331
+ * <p>Once you've obtained a {@code Locale} you can query it for information
348
332
* about itself. Use {@code getCountry} to get the country (or region)
349
333
* code and {@code getLanguage} to get the language code.
350
334
* You can use {@code getDisplayCountry} to get the
387
371
*
388
372
* <h3>Compatibility</h3>
389
373
*
390
- * <p>In order to maintain compatibility with existing usage , Locale's
374
+ * <p>In order to maintain compatibility, Locale's
391
375
* constructors retain their behavior prior to the Java Runtime
392
376
* Environment version 1.7. The same is largely true for the
393
377
* {@code toString} method. Thus Locale objects can continue to
@@ -741,6 +725,9 @@ private Locale(BaseLocale baseLocale, LocaleExtensions extensions) {
741
725
* see <a href="#special_cases_constructor">Special Cases</a> for more information.
742
726
* </ul>
743
727
*
728
+ * @deprecated Locale constructors have been deprecated. See <a href ="#ObtainingLocale">
729
+ * Obtaining a Locale</a> for other options.
730
+ *
744
731
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
745
732
* up to 8 characters in length. See the {@code Locale} class description about
746
733
* valid language values.
@@ -750,6 +737,7 @@ private Locale(BaseLocale baseLocale, LocaleExtensions extensions) {
750
737
* See the {@code Locale} class description for the details.
751
738
* @throws NullPointerException thrown if any argument is null.
752
739
*/
740
+ @ Deprecated (since ="19" )
753
741
public Locale (String language , String country , String variant ) {
754
742
if (language == null || country == null || variant == null ) {
755
743
throw new NullPointerException ();
@@ -771,13 +759,17 @@ public Locale(String language, String country, String variant) {
771
759
* any syntactic checks on the input.
772
760
* </ul>
773
761
*
762
+ * @deprecated Locale constructors have been deprecated. See <a href="#ObtainingLocale">
763
+ * Obtaining a Locale</a> for other options.
764
+ *
774
765
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
775
766
* up to 8 characters in length. See the {@code Locale} class description about
776
767
* valid language values.
777
768
* @param country An ISO 3166 alpha-2 country code or a UN M.49 numeric-3 area code.
778
769
* See the {@code Locale} class description about valid country values.
779
770
* @throws NullPointerException thrown if either argument is null.
780
771
*/
772
+ @ Deprecated (since ="19" )
781
773
public Locale (String language , String country ) {
782
774
this (language , country , "" );
783
775
}
@@ -794,16 +786,96 @@ public Locale(String language, String country) {
794
786
* any syntactic checks on the input.
795
787
* </ul>
796
788
*
789
+ * @deprecated Locale constructors have been deprecated. See <a href="#ObtainingLocale">
790
+ * Obtaining a Locale</a> for other options.
791
+ *
797
792
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
798
793
* up to 8 characters in length. See the {@code Locale} class description about
799
794
* valid language values.
800
795
* @throws NullPointerException thrown if argument is null.
801
796
* @since 1.4
802
797
*/
798
+ @ Deprecated (since ="19" )
803
799
public Locale (String language ) {
804
800
this (language , "" , "" );
805
801
}
806
802
803
+ /**
804
+ * Obtains a locale from language, country and variant.
805
+ * This method normalizes the language value to lowercase and
806
+ * the country value to uppercase.
807
+ * @implNote
808
+ * <ul>
809
+ * <li>This method does not make any syntactic checks on the input.
810
+ * Use {@link Locale.Builder} for full syntactic checks with BCP47.
811
+ * <li>The two cases ("ja", "JP", "JP") and ("th", "TH", "TH") are handled specially,
812
+ * see <a href="#special_cases_constructor">Special Cases</a> for more information.
813
+ * <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
814
+ * their current forms. See <a href="#legacy_language_codes">Legacy language
815
+ * codes</a> for more information.
816
+ * </ul>
817
+ *
818
+ * @param language A language code. See the {@code Locale} class description of
819
+ * <a href="#def_language">language</a> values.
820
+ * @param country A country code. See the {@code Locale} class description of
821
+ * <a href="#def_region">country</a> values.
822
+ * @param variant Any arbitrary value used to indicate a variation of a {@code Locale}.
823
+ * See the {@code Locale} class description of <a href="#def_variant">variant</a> values.
824
+ * @throws NullPointerException thrown if any argument is null.
825
+ * @return A {@code Locale} object
826
+ * @since 19
827
+ */
828
+ public static Locale of (String language , String country , String variant ) {
829
+ return getInstance (language , "" , country , variant , null );
830
+ }
831
+
832
+ /**
833
+ * Obtains a locale from language and country.
834
+ * This method normalizes the language value to lowercase and
835
+ * the country value to uppercase.
836
+ * @implNote
837
+ * <ul>
838
+ * <li>This method does not make any syntactic checks on the input.
839
+ * Use {@link Locale.Builder} for full syntactic checks with BCP47.
840
+ * <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
841
+ * their current forms. See <a href="#legacy_language_codes">Legacy language
842
+ * codes</a> for more information.
843
+ * </ul>
844
+ *
845
+ * @param language A language code. See the {@code Locale} class description of
846
+ * <a href="#def_language">language</a> values.
847
+ * @param country A country code. See the {@code Locale} class description of
848
+ * <a href="#def_region">country</a> values.
849
+ * @throws NullPointerException thrown if either argument is null.
850
+ * @return A {@code Locale} object
851
+ * @since 19
852
+ */
853
+ public static Locale of (String language , String country ) {
854
+ return getInstance (language , "" , country , "" , null );
855
+ }
856
+
857
+ /**
858
+ * Obtains a locale from a language code.
859
+ * This method normalizes the language value to lowercase.
860
+ * @implNote
861
+ * <ul>
862
+ * <li>This method does not make any syntactic checks on the input.
863
+ * Use {@link Locale.Builder} for full syntactic checks with BCP47.
864
+ * <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
865
+ * their current forms. See <a href="#legacy_language_codes">Legacy language
866
+ * codes</a> for more information.
867
+ * </ul>
868
+ *
869
+ * @param language A language code. See the {@code Locale} class description of
870
+ * <a href="#def_language">language</a> values.
871
+ * @throws NullPointerException thrown if argument is null.
872
+ * @return A {@code Locale} object
873
+ * @since 19
874
+ */
875
+ public static Locale of (String language ) {
876
+ return getInstance (language , "" , "" , "" , null );
877
+ }
878
+
807
879
/**
808
880
* Returns a {@code Locale} constructed from the given
809
881
* {@code language}, {@code country} and
@@ -1138,14 +1210,14 @@ public static Locale[] getAvailableLocales() {
1138
1210
1139
1211
/**
1140
1212
* Returns a list of all 2-letter country codes defined in ISO 3166.
1141
- * Can be used to create Locales.
1213
+ * Can be used to obtain Locales.
1142
1214
* This method is equivalent to {@link #getISOCountries(Locale.IsoCountryCode type)}
1143
1215
* with {@code type} {@link IsoCountryCode#PART1_ALPHA2}.
1144
1216
* <p>
1145
1217
* <b>Note:</b> The {@code Locale} class also supports other codes for
1146
1218
* country (region), such as 3-letter numeric UN M.49 area codes.
1147
1219
* Therefore, the list returned by this method does not contain ALL valid
1148
- * codes that can be used to create Locales.
1220
+ * codes that can be used to obtain Locales.
1149
1221
* <p>
1150
1222
* Note that this method does not return obsolete 2-letter country codes.
1151
1223
* ISO3166-3 codes which designate country codes for those obsolete codes,
@@ -1178,7 +1250,7 @@ public static Set<String> getISOCountries(IsoCountryCode type) {
1178
1250
1179
1251
/**
1180
1252
* Returns a list of all 2-letter language codes defined in ISO 639.
1181
- * Can be used to create Locales.
1253
+ * Can be used to obtain Locales.
1182
1254
* <p>
1183
1255
* <b>Note:</b>
1184
1256
* <ul>
@@ -1187,7 +1259,7 @@ public static Set<String> getISOCountries(IsoCountryCode type) {
1187
1259
* languages whose codes have changed.
1188
1260
* <li>The {@code Locale} class also supports language codes up to
1189
1261
* 8 characters in length. Therefore, the list returned by this method does
1190
- * not contain ALL valid codes that can be used to create Locales.
1262
+ * not contain ALL valid codes that can be used to obtain Locales.
1191
1263
* </ul>
1192
1264
*
1193
1265
* @return An array of ISO 639 two-letter language codes.
@@ -1520,12 +1592,12 @@ public final String toString() {
1520
1592
* "NY", representing Norwegian Nynorsk (Norway), is converted
1521
1593
* to a language tag "nn-NO".</li></ul>
1522
1594
*
1523
- * <p><b>Note:</b> Although the language tag created by this
1595
+ * <p><b>Note:</b> Although the language tag obtained by this
1524
1596
* method is well-formed (satisfies the syntax requirements
1525
1597
* defined by the IETF BCP 47 specification), it is not
1526
1598
* necessarily a valid BCP 47 language tag. For example,
1527
1599
* <pre>
1528
- * new Locale("xx", " YY").toLanguageTag();</pre>
1600
+ * Locale.forLanguageTag ("xx- YY").toLanguageTag();</pre>
1529
1601
*
1530
1602
* will return "xx-YY", but the language subtag "xx" and the
1531
1603
* region subtag "YY" are invalid because they are not registered
@@ -2510,7 +2582,7 @@ public enum Category {
2510
2582
* from values configured by the setters. Unlike the {@code Locale}
2511
2583
* constructors, the {@code Builder} checks if a value configured by a
2512
2584
* setter satisfies the syntax requirements defined by the {@code Locale}
2513
- * class. A {@code Locale} object created by a {@code Builder} is
2585
+ * class. A {@code Locale} object obtained from a {@code Builder} is
2514
2586
* well-formed and can be transformed to a well-formed IETF BCP 47 language tag
2515
2587
* without losing information.
2516
2588
*
@@ -2521,11 +2593,11 @@ public enum Category {
2521
2593
* {@code IllformedLocaleException} for a variant that does not satisfy
2522
2594
* this restriction. If it is necessary to support such a variant, use a
2523
2595
* Locale constructor. However, keep in mind that a {@code Locale}
2524
- * object created this way might lose the variant information when
2596
+ * object obtained this way might lose the variant information when
2525
2597
* transformed to a BCP 47 language tag.
2526
2598
*
2527
- * <p>The following example shows how to create a {@code Locale} object
2528
- * with the {@code Builder}.
2599
+ * <p>The following example shows how to obtain a {@code Locale} object
2600
+ * using a {@code Builder}.
2529
2601
* <blockquote>
2530
2602
* <pre>
2531
2603
* Locale aLocale = new Builder().setLanguage("sr").setScript("Latn").setRegion("RS").build();
@@ -2658,7 +2730,7 @@ public Builder setScript(String script) {
2658
2730
* <p>The typical region value is a two-letter ISO 3166 code or a
2659
2731
* three-digit UN M.49 area code.
2660
2732
*
2661
- * <p>The country value in the {@code Locale} created by the
2733
+ * <p>The country value in the {@code Locale} obtained from a
2662
2734
* {@code Builder} is always normalized to upper case.
2663
2735
*
2664
2736
* @param region the region
@@ -2831,7 +2903,7 @@ public Builder clearExtensions() {
2831
2903
}
2832
2904
2833
2905
/**
2834
- * Returns an instance of {@code Locale} created from the fields set
2906
+ * Returns an instance of {@code Locale} obtained from the fields set
2835
2907
* on this builder.
2836
2908
*
2837
2909
* <p>This applies the conversions listed in {@link Locale#forLanguageTag}
1 commit comments
openjdk-notifier[bot] commentedon Apr 5, 2022
Review
Issues