Struct rucaja::Jvm [] [src]

pub struct Jvm { /* fields omitted */ }

Represents the JVM and the JNI environment.

Methods

impl Jvm
[src]

Instantiates the JVM and the JNI environment.

Tries to call the given JVM method in the given JVM class. Currently panics if a JVM exception occurs.

Tries to resolve the JVM class with the given name.

Tries to resolve the JVM constructor with the given signature in the given JVM class.

Tries to resolve the JVM method with the given name and signature in the given JVM class.

Tries to resolve the static JVM method with the given name and signature in the given JVM class.

Returns the JNI environment.

Trait Implementations

impl Drop for Jvm
[src]

A method called when the value goes out of scope. Read more