jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "java-lang-SuppressWarnings"))]
__jni_bindgen! {
    /// public interface [SuppressWarnings](https://developer.android.com/reference/java/lang/SuppressWarnings.html)
    ///
    /// Required feature: "java-lang-SuppressWarnings"
    public interface SuppressWarnings ("java/lang/SuppressWarnings") extends crate::java::lang::Object, implements crate::java::lang::annotation::Annotation {

        /// [value](https://developer.android.com/reference/java/lang/SuppressWarnings.html#value())
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn value<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::ObjectArray<crate::java::lang::String, crate::java::lang::Throwable>>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "java/lang/SuppressWarnings", java.flags == PUBLIC | ABSTRACT, .name == "value", .descriptor == "()[Ljava/lang/String;"
            unsafe {
                let __jni_args = [];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("java/lang/SuppressWarnings\0", "value\0", "()[Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}