Methods Summary |
---|
public static java.lang.Object | command(java.lang.Object cmd)Executes an operation according to the specified command object. This
method is the low-level interface to the JIT compiler. It may return any
object or {@code null} if no JIT compiler is available.
return null;
|
public static boolean | compileClass(java.lang.Class classToCompile)Compiles the specified class using the JIT compiler and indicates if
compilation has been successful.
return false;
|
public static boolean | compileClasses(java.lang.String nameRoot)Compiles all classes whose name matches the specified name using the JIT
compiler and indicates if compilation has been successful.
return false;
|
public static void | disable()Disables the JIT compiler.
return;
|
public static void | enable()Enables the JIT compiler.
return;
|