8293892: Add links to JVMS 19 and 20 from ClassFileFormatVersion enum constants

Reviewed-by: sundar, mchung
This commit is contained in:
Joe Darcy 2022-09-16 16:53:20 +00:00
parent dfb9c06633
commit 4b297c1c16

View File

@ -247,12 +247,20 @@ public enum ClassFileFormatVersion {
/**
* The version recognized by the Java Platform, Standard Edition
* 19.
*
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se19/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 19 Edition</cite></a>
*/
RELEASE_19(63),
/**
* The version recognized by the Java Platform, Standard Edition
* 20.
*
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se20/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 20 Edition</cite></a>
*/
RELEASE_20(64);