Skip to content

Commit 08e0883

Browse files
author
duke
committedApr 18, 2022
Automatic merge of jdk:master into master
2 parents b92ae1d + ffdeb32 commit 08e0883

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
 

‎src/java.compiler/share/classes/javax/lang/model/SourceVersion.java

+52
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ public enum SourceVersion {
129129
* 6.
130130
*
131131
* No major changes from {@code RELEASE_5}.
132+
*
133+
* @see <a
134+
* href="https://docs.oracle.com/javase/specs/jls/se6/html/j3TOC.html">
135+
* <cite>The Java Language Specification, Third Edition</cite></a>
132136
*/
133137
RELEASE_6,
134138

@@ -140,6 +144,10 @@ public enum SourceVersion {
140144
* constructors, {@code try}-with-resources, strings in switch,
141145
* binary literals, and multi-catch.
142146
* @since 1.7
147+
*
148+
* @see <a
149+
* href="https://docs.oracle.com/javase/specs/jls/se7/html/index.html">
150+
* <cite>The Java Language Specification, Java SE 7 Edition</cite></a>
143151
*/
144152
RELEASE_7,
145153

@@ -149,6 +157,10 @@ public enum SourceVersion {
149157
*
150158
* Additions in this release include lambda expressions and default methods.
151159
* @since 1.8
160+
*
161+
* @see <a
162+
* href="https://docs.oracle.com/javase/specs/jls/se8/html/index.html">
163+
* <cite>The Java Language Specification, Java SE 8 Edition</cite></a>
152164
*/
153165
RELEASE_8,
154166

@@ -160,6 +172,10 @@ public enum SourceVersion {
160172
* single underscore from the set of legal identifier names.
161173
*
162174
* @since 9
175+
*
176+
* @see <a
177+
* href="https://docs.oracle.com/javase/specs/jls/se9/html/index.html">
178+
* <cite>The Java Language Specification, Java SE 9 Edition</cite></a>
163179
*/
164180
RELEASE_9,
165181

@@ -171,6 +187,10 @@ public enum SourceVersion {
171187
* ({@code var}).
172188
*
173189
* @since 10
190+
*
191+
* @see <a
192+
* href="https://docs.oracle.com/javase/specs/jls/se10/html/index.html">
193+
* <cite>The Java Language Specification, Java SE 10 Edition</cite></a>
174194
*/
175195
RELEASE_10,
176196

@@ -182,6 +202,10 @@ public enum SourceVersion {
182202
* lambda parameters.
183203
*
184204
* @since 11
205+
*
206+
* @see <a
207+
* href="https://docs.oracle.com/javase/specs/jls/se11/html/index.html">
208+
* <cite>The Java Language Specification, Java SE 11 Edition</cite></a>
185209
*/
186210
RELEASE_11,
187211

@@ -191,6 +215,10 @@ public enum SourceVersion {
191215
* No major changes from the prior release.
192216
*
193217
* @since 12
218+
*
219+
* @see <a
220+
* href="https://docs.oracle.com/javase/specs/jls/se12/html/index.html">
221+
* <cite>The Java Language Specification, Java SE 12 Edition</cite></a>
194222
*/
195223
RELEASE_12,
196224

@@ -200,6 +228,10 @@ public enum SourceVersion {
200228
* No major changes from the prior release.
201229
*
202230
* @since 13
231+
*
232+
* @see <a
233+
* href="https://docs.oracle.com/javase/specs/jls/se13/html/index.html">
234+
* <cite>The Java Language Specification, Java SE 13 Edition</cite></a>
203235
*/
204236
RELEASE_13,
205237

@@ -210,6 +242,10 @@ public enum SourceVersion {
210242
* Additions in this release include switch expressions.
211243
*
212244
* @since 14
245+
*
246+
* @see <a
247+
* href="https://docs.oracle.com/javase/specs/jls/se14/html/index.html">
248+
* <cite>The Java Language Specification, Java SE 14 Edition</cite></a>
213249
*/
214250
RELEASE_14,
215251

@@ -220,6 +256,10 @@ public enum SourceVersion {
220256
* Additions in this release include text blocks.
221257
*
222258
* @since 15
259+
*
260+
* @see <a
261+
* href="https://docs.oracle.com/javase/specs/jls/se15/html/index.html">
262+
* <cite>The Java Language Specification, Java SE 15 Edition</cite></a>
223263
*/
224264
RELEASE_15,
225265

@@ -231,6 +271,10 @@ public enum SourceVersion {
231271
* for {@code instanceof}.
232272
*
233273
* @since 16
274+
*
275+
* @see <a
276+
* href="https://docs.oracle.com/javase/specs/jls/se16/html/index.html">
277+
* <cite>The Java Language Specification, Java SE 16 Edition</cite></a>
234278
*/
235279
RELEASE_16,
236280

@@ -242,6 +286,10 @@ public enum SourceVersion {
242286
* restoration of always-strict floating-point semantics.
243287
*
244288
* @since 17
289+
*
290+
* @see <a
291+
* href="https://docs.oracle.com/javase/specs/jls/se17/html/index.html">
292+
* <cite>The Java Language Specification, Java SE 17 Edition</cite></a>
245293
*/
246294
RELEASE_17,
247295

@@ -252,6 +300,10 @@ public enum SourceVersion {
252300
* No major changes from the prior release.
253301
*
254302
* @since 18
303+
*
304+
* @see <a
305+
* href="https://docs.oracle.com/javase/specs/jls/se18/html/index.html">
306+
* <cite>The Java Language Specification, Java SE 18 Edition</cite></a>
255307
*/
256308
RELEASE_18,
257309

0 commit comments

Comments
 (0)
Please sign in to comment.