View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package mockit.asm.jvmConstants;
7   
8   /**
9    * Constants for JVM classfile versions corresponding to major versions of Java.
10   */
11  public interface ClassVersion {
12      int V5 = 49;
13      int V6 = 50;
14      int V7 = 51;
15      int V8 = 52;
16      int V9 = 53;
17      int V10 = 54;
18      int V11 = 55;
19      int V12 = 56;
20      int V13 = 57;
21      int V14 = 58;
22      int V15 = 59;
23      int V16 = 60;
24      int V17 = 61;
25      int V18 = 62;
26      int V19 = 63;
27      int V20 = 64;
28      int V21 = 65;
29      int V22 = 66;
30      int V23 = 67;
31      int V24 = 68;
32      int V25 = 69;
33      int V26 = 70;
34  }