jni 0.17.0

Rust bindings to the JNI
Documentation
// wrappers arount jni pointer types that add lifetimes and other functionality.
mod jvalue;
pub use self::jvalue::*;

mod jmethodid;
pub use self::jmethodid::*;

mod jstaticmethodid;
pub use self::jstaticmethodid::*;

mod jfieldid;
pub use self::jfieldid::*;

mod jstaticfieldid;
pub use self::jstaticfieldid::*;

mod jobject;
pub use self::jobject::*;

mod jthrowable;
pub use self::jthrowable::*;

mod jclass;
pub use self::jclass::*;

mod jstring;
pub use self::jstring::*;

mod jmap;
pub use self::jmap::*;

mod jlist;
pub use self::jlist::*;

mod jbytebuffer;
pub use self::jbytebuffer::*;

// For storing a reference to a java object
mod global_ref;
pub use self::global_ref::*;

// For automatic local ref deletion
mod auto_local;
pub use self::auto_local::*;

// For automatic pointer-based byte array deletion
mod auto_byte_array;
pub use self::auto_byte_array::*;

// For automatic pointer-based primitive array deletion
mod auto_primitive_array;
pub use self::auto_primitive_array::*;