View Javadoc
1   package mockit.asm.jvmConstants;
2   
3   /**
4    * Constants for JVM classfile versions corresponding to major versions of Java.
5    */
6   public interface ClassVersion {
7       int V5 = 49;
8       int V6 = 50;
9       int V7 = 51;
10      int V8 = 52;
11      int V9 = 53;
12      int V10 = 54;
13      int V11 = 55;
14      int V12 = 56;
15      int V13 = 57;
16      int V14 = 58;
17      int V15 = 59;
18      int V16 = 60;
19      int V17 = 61;
20      int V18 = 62;
21      int V19 = 63;
22      int V20 = 64;
23      int V21 = 65;
24      int V22 = 66;
25  }