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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// 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, .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";
}
}