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 = "android-provider-MediaStore_Audio_Genres_Members"))]
__jni_bindgen! {
    /// public final class [MediaStore.Audio.Genres.Members](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html)
    ///
    /// Required feature: "android-provider-MediaStore_Audio_Genres_Members"
    public final class MediaStore_Audio_Genres_Members ("android/provider/MediaStore$Audio$Genres$Members") extends crate::java::lang::Object, implements crate::android::provider::MediaStore_Audio_AudioColumns {

        /// [Members](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#Members())
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::provider::MediaStore_Audio_Genres_Members>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/provider/MediaStore$Audio$Genres$Members", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/provider/MediaStore$Audio$Genres$Members\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getContentUri](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#getContentUri(java.lang.String,%20long))
        ///
        /// Required features: "android-net-Uri", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-net-Uri", feature = "java-lang-String")))]
        pub fn getContentUri<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: i64) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::net::Uri>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/provider/MediaStore$Audio$Genres$Members", java.flags == PUBLIC | STATIC | FINAL, .name == "getContentUri", .descriptor == "(Ljava/lang/String;J)Landroid/net/Uri;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/provider/MediaStore$Audio$Genres$Members\0", "getContentUri\0", "(Ljava/lang/String;J)Landroid/net/Uri;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// public static final [AUDIO_ID](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#AUDIO_ID)
        pub const AUDIO_ID : &'static str = "audio_id";

        /// public static final [CONTENT_DIRECTORY](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#CONTENT_DIRECTORY)
        pub const CONTENT_DIRECTORY : &'static str = "members";

        /// public static final [DEFAULT_SORT_ORDER](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#DEFAULT_SORT_ORDER)
        pub const DEFAULT_SORT_ORDER : &'static str = "title_key";

        /// public static final [GENRE_ID](https://developer.android.com/reference/android/provider/MediaStore.Audio.Genres.Members.html#GENRE_ID)
        pub const GENRE_ID : &'static str = "genre_id";
    }
}