@@ -129,6 +129,10 @@ public enum SourceVersion {
129
129
* 6.
130
130
*
131
131
* 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>
132
136
*/
133
137
RELEASE_6 ,
134
138
@@ -140,6 +144,10 @@ public enum SourceVersion {
140
144
* constructors, {@code try}-with-resources, strings in switch,
141
145
* binary literals, and multi-catch.
142
146
* @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>
143
151
*/
144
152
RELEASE_7 ,
145
153
@@ -149,6 +157,10 @@ public enum SourceVersion {
149
157
*
150
158
* Additions in this release include lambda expressions and default methods.
151
159
* @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>
152
164
*/
153
165
RELEASE_8 ,
154
166
@@ -160,6 +172,10 @@ public enum SourceVersion {
160
172
* single underscore from the set of legal identifier names.
161
173
*
162
174
* @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>
163
179
*/
164
180
RELEASE_9 ,
165
181
@@ -171,6 +187,10 @@ public enum SourceVersion {
171
187
* ({@code var}).
172
188
*
173
189
* @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>
174
194
*/
175
195
RELEASE_10 ,
176
196
@@ -182,6 +202,10 @@ public enum SourceVersion {
182
202
* lambda parameters.
183
203
*
184
204
* @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>
185
209
*/
186
210
RELEASE_11 ,
187
211
@@ -191,6 +215,10 @@ public enum SourceVersion {
191
215
* No major changes from the prior release.
192
216
*
193
217
* @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>
194
222
*/
195
223
RELEASE_12 ,
196
224
@@ -200,6 +228,10 @@ public enum SourceVersion {
200
228
* No major changes from the prior release.
201
229
*
202
230
* @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>
203
235
*/
204
236
RELEASE_13 ,
205
237
@@ -210,6 +242,10 @@ public enum SourceVersion {
210
242
* Additions in this release include switch expressions.
211
243
*
212
244
* @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>
213
249
*/
214
250
RELEASE_14 ,
215
251
@@ -220,6 +256,10 @@ public enum SourceVersion {
220
256
* Additions in this release include text blocks.
221
257
*
222
258
* @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>
223
263
*/
224
264
RELEASE_15 ,
225
265
@@ -231,6 +271,10 @@ public enum SourceVersion {
231
271
* for {@code instanceof}.
232
272
*
233
273
* @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>
234
278
*/
235
279
RELEASE_16 ,
236
280
@@ -242,6 +286,10 @@ public enum SourceVersion {
242
286
* restoration of always-strict floating-point semantics.
243
287
*
244
288
* @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>
245
293
*/
246
294
RELEASE_17 ,
247
295
@@ -252,6 +300,10 @@ public enum SourceVersion {
252
300
* No major changes from the prior release.
253
301
*
254
302
* @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>
255
307
*/
256
308
RELEASE_18 ,
257
309
0 commit comments