1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


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

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