Skip to content

Commit ea5bf45

Browse files
committed
8261621: Delegate Unicode history from JLS to j.l.Character
Reviewed-by: bpb, joehw, rriggs, darcy
1 parent d5a4d22 commit ea5bf45

File tree

1 file changed

+38
-2
lines changed

1 file changed

+38
-2
lines changed

src/java.base/share/classes/java/lang/Character.java

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -63,7 +63,43 @@
6363
* <a href="http://www.unicode.org">http://www.unicode.org</a>.
6464
* <p>
6565
* Character information is based on the Unicode Standard, version 13.0.
66-
*
66+
* <p>
67+
* The Java platform has supported different versions of the Unicode
68+
* Standard over time. Upgrades to newer versions of the Unicode Standard
69+
* occurred in the following Java releases, each indicating the new version:
70+
* <table class="striped">
71+
* <caption style="display:none">Shows Java releases and supported Unicode versions</caption>
72+
* <thead>
73+
* <tr><th scope="col">Java release</th>
74+
* <th scope="col">Unicode version</th></tr>
75+
* </thead>
76+
* <tbody>
77+
* <tr><td>Java SE 15</td>
78+
* <td>Unicode 13.0</td></tr>
79+
* <tr><td>Java SE 13</td>
80+
* <td>Unicode 12.1</td></tr>
81+
* <tr><td>Java SE 12</td>
82+
* <td>Unicode 11.0</td></tr>
83+
* <tr><td>Java SE 11</td>
84+
* <td>Unicode 10.0</td></tr>
85+
* <tr><td>Java SE 9</td>
86+
* <td>Unicode 8.0</td></tr>
87+
* <tr><td>Java SE 8</td>
88+
* <td>Unicode 6.2</td></tr>
89+
* <tr><td>Java SE 7</td>
90+
* <td>Unicode 6.0</td></tr>
91+
* <tr><td>Java SE 5.0</td>
92+
* <td>Unicode 4.0</td></tr>
93+
* <tr><td>Java SE 1.4</td>
94+
* <td>Unicode 3.0</td></tr>
95+
* <tr><td>JDK 1.1</td>
96+
* <td>Unicode 2.0</td></tr>
97+
* <tr><td>JDK 1.0.2</td>
98+
* <td>Unicode 1.1.5</td></tr>
99+
* </tbody>
100+
* </table>
101+
* Variations from these base Unicode versions, such as recognized appendixes,
102+
* are documented elsewhere.
67103
* <h2><a id="unicode">Unicode Character Representations</a></h2>
68104
*
69105
* <p>The {@code char} data type (and therefore the value that a

0 commit comments

Comments
 (0)