mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8211961: Broken link in java.util.Locale
Reviewed-by: mchung
This commit is contained in:
parent
a0ce3d3f18
commit
a3a7edbd4d
1 changed files with 10 additions and 6 deletions
|
@ -2246,22 +2246,26 @@ public final class Locale implements Cloneable, Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @serialField language String
|
* @serialField language String
|
||||||
* language subtag in lower case. (See <a href="java/util/Locale.html#getLanguage()">getLanguage()</a>)
|
* language subtag in lower case.
|
||||||
|
* (See <a href="java.base/java/util/Locale.html#getLanguage()">getLanguage()</a>)
|
||||||
* @serialField country String
|
* @serialField country String
|
||||||
* country subtag in upper case. (See <a href="java/util/Locale.html#getCountry()">getCountry()</a>)
|
* country subtag in upper case.
|
||||||
|
* (See <a href="java.base/java/util/Locale.html#getCountry()">getCountry()</a>)
|
||||||
* @serialField variant String
|
* @serialField variant String
|
||||||
* variant subtags separated by LOWLINE characters. (See <a href="java/util/Locale.html#getVariant()">getVariant()</a>)
|
* variant subtags separated by LOWLINE characters.
|
||||||
|
* (See <a href="java.base/java/util/Locale.html#getVariant()">getVariant()</a>)
|
||||||
* @serialField hashcode int
|
* @serialField hashcode int
|
||||||
* deprecated, for forward compatibility only
|
* deprecated, for forward compatibility only
|
||||||
* @serialField script String
|
* @serialField script String
|
||||||
* script subtag in title case (See <a href="java/util/Locale.html#getScript()">getScript()</a>)
|
* script subtag in title case
|
||||||
|
* (See <a href="java.base/java/util/Locale.html#getScript()">getScript()</a>)
|
||||||
* @serialField extensions String
|
* @serialField extensions String
|
||||||
* canonical representation of extensions, that is,
|
* canonical representation of extensions, that is,
|
||||||
* BCP47 extensions in alphabetical order followed by
|
* BCP47 extensions in alphabetical order followed by
|
||||||
* BCP47 private use subtags, all in lower case letters
|
* BCP47 private use subtags, all in lower case letters
|
||||||
* separated by HYPHEN-MINUS characters.
|
* separated by HYPHEN-MINUS characters.
|
||||||
* (See <a href="java/util/Locale.html#getExtensionKeys()">getExtensionKeys()</a>,
|
* (See <a href="java.base/java/util/Locale.html#getExtensionKeys()">getExtensionKeys()</a>,
|
||||||
* <a href="java/util/Locale.html#getExtension(char)">getExtension(char)</a>)
|
* <a href="java.base/java/util/Locale.html#getExtension(char)">getExtension(char)</a>)
|
||||||
*/
|
*/
|
||||||
private static final ObjectStreamField[] serialPersistentFields = {
|
private static final ObjectStreamField[] serialPersistentFields = {
|
||||||
new ObjectStreamField("language", String.class),
|
new ObjectStreamField("language", String.class),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue