Methods Summary |
---|
public static void | emptyInlineMethod()This method is intended to be "inlined" by the virtual machine
(e.g., given special treatment as an intrinsic).
// This space intentionally left blank.
|
public static native void | emptyInternalStaticMethod()This method is intended to be defined in native code and hooked
up using the virtual machine's special fast-path native linkage
(as opposed to being hooked up using JNI).
|
public static native void | emptyJniStaticMethod0()This is an empty native static method with no args, hooked up using
JNI.
|
public static native void | emptyJniStaticMethod6(int a, int b, int c, int d, int e, int f)This is an empty native static method with six args, hooked up using
JNI.
|
public static native void | emptyJniStaticMethod6L(java.lang.String a, java.lang.String[] b, int[][] c, java.lang.Object d, java.lang.Object[] e, java.lang.Object[][][][] f)This is an empty native static method with six args, hooked up
using JNI. These have more complex args to show the cost of
parsing the signature. All six values should be null
references.
|