All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.asm.jvmConstants.ClassVersion Maven / Gradle / Ivy

Go to download

JMockit is a Java toolkit for automated developer testing. It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external APIs; JUnit (4 & 5) and TestNG test runners are supported. It also contains an advanced code coverage tool.

The newest version!
package mockit.asm.jvmConstants;

/**
 * Constants for JVM classfile versions corresponding to major versions of Java.
 */
public interface ClassVersion {
    int V5 = 49;
    int V6 = 50;
    int V7 = 51;
    int V8 = 52;
    int V9 = 53;
    int V10 = 54;
    int V11 = 55;
    int V12 = 56;
    int V13 = 57;
    int V14 = 58;
    int V15 = 59;
    int V16 = 60;
    int V17 = 61;
    int V18 = 62;
    int V19 = 63;
    int V20 = 64;
    int V21 = 65;
    int V22 = 66;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy