Module openj9.dtfj

Interface JavaVMInitArgs

All Known Implementing Classes:
DTFJJavaVMInitArgs, JavaVMInitArgs, JCJavaVMInitArgs

public interface JavaVMInitArgs
Represents the JavaVMInitArgs C structure passed to JNI_CreateJavaVM to create the Java runtime.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The JNI specified version constant for the Java 1.1 version of JNI
    static final int
    The JNI specified version constant for the Java 1.2 version of JNI
    static final int
    The JNI specified version constant for the Java 1.4 version of JNI
    static final int
    The JNI specified version constant for the Java 1.6 version of JNI
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Fetch the ignoreUnrecognized field from the JavaVMInitArgs structure used to create this VM.
    Fetch the options used to start this VM, in the order they were originally specified.
    int
    Fetch the JNI version from the JavaVMInitArgs structure used to create this VM.
  • Field Details

    • JNI_VERSION_1_1

      static final int JNI_VERSION_1_1
      The JNI specified version constant for the Java 1.1 version of JNI
      See Also:
    • JNI_VERSION_1_2

      static final int JNI_VERSION_1_2
      The JNI specified version constant for the Java 1.2 version of JNI
      See Also:
    • JNI_VERSION_1_4

      static final int JNI_VERSION_1_4
      The JNI specified version constant for the Java 1.4 version of JNI
      See Also:
    • JNI_VERSION_1_6

      static final int JNI_VERSION_1_6
      The JNI specified version constant for the Java 1.6 version of JNI
      See Also:
  • Method Details