jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-app-Notification"))]
__jni_bindgen! {
    /// public class [Notification](https://developer.android.com/reference/android/app/Notification.html)
    ///
    /// Required feature: "android-app-Notification"
    public class Notification ("android/app/Notification") extends crate::java::lang::Object, implements crate::android::os::Parcelable {

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

        /// [Notification](https://developer.android.com/reference/android/app/Notification.html#Notification(int,%20java.lang.CharSequence,%20long))
        ///
        /// Required features: "java-lang-CharSequence"
        #[cfg(any(feature = "all", all(feature = "java-lang-CharSequence")))]
        #[deprecated] pub fn new_int_CharSequence_long<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::CharSequence>>, arg2: i64) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::app::Notification>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/app/Notification", java.flags == PUBLIC, .name == "<init>", .descriptor == "(ILjava/lang/CharSequence;J)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/Notification\0", "<init>\0", "(ILjava/lang/CharSequence;J)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [Notification](https://developer.android.com/reference/android/app/Notification.html#Notification(android.os.Parcel))
        ///
        /// Required features: "android-os-Parcel"
        #[cfg(any(feature = "all", all(feature = "android-os-Parcel")))]
        pub fn new_Parcel<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Parcel>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::app::Notification>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/app/Notification", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/os/Parcel;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/Notification\0", "<init>\0", "(Landroid/os/Parcel;)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [describeContents](https://developer.android.com/reference/android/app/Notification.html#describeContents())
        pub fn describeContents<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/app/Notification", java.flags == PUBLIC, .name == "describeContents", .descriptor == "()I"
            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("android/app/Notification\0", "describeContents\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [writeToParcel](https://developer.android.com/reference/android/app/Notification.html#writeToParcel(android.os.Parcel,%20int))
        ///
        /// Required features: "android-os-Parcel"
        #[cfg(any(feature = "all", all(feature = "android-os-Parcel")))]
        pub fn writeToParcel<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Parcel>>, arg1: i32) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/app/Notification", java.flags == PUBLIC, .name == "writeToParcel", .descriptor == "(Landroid/os/Parcel;I)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/Notification\0", "writeToParcel\0", "(Landroid/os/Parcel;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setLatestEventInfo](https://developer.android.com/reference/android/app/Notification.html#setLatestEventInfo(android.content.Context,%20java.lang.CharSequence,%20java.lang.CharSequence,%20android.app.PendingIntent))
        ///
        /// Required features: "android-app-PendingIntent", "android-content-Context", "java-lang-CharSequence"
        #[cfg(any(feature = "all", all(feature = "android-app-PendingIntent", feature = "android-content-Context", feature = "java-lang-CharSequence")))]
        #[deprecated] pub fn setLatestEventInfo<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::CharSequence>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::CharSequence>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::PendingIntent>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/app/Notification", java.flags == PUBLIC, .name == "setLatestEventInfo", .descriptor == "(Landroid/content/Context;Ljava/lang/CharSequence;Ljava/lang/CharSequence;Landroid/app/PendingIntent;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/Notification\0", "setLatestEventInfo\0", "(Landroid/content/Context;Ljava/lang/CharSequence;Ljava/lang/CharSequence;Landroid/app/PendingIntent;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// public static final [DEFAULT_ALL](https://developer.android.com/reference/android/app/Notification.html#DEFAULT_ALL)
        pub const DEFAULT_ALL : i32 = -1;

        /// public static final [DEFAULT_SOUND](https://developer.android.com/reference/android/app/Notification.html#DEFAULT_SOUND)
        pub const DEFAULT_SOUND : i32 = 1;

        /// public static final [DEFAULT_VIBRATE](https://developer.android.com/reference/android/app/Notification.html#DEFAULT_VIBRATE)
        pub const DEFAULT_VIBRATE : i32 = 2;

        /// public static final [DEFAULT_LIGHTS](https://developer.android.com/reference/android/app/Notification.html#DEFAULT_LIGHTS)
        pub const DEFAULT_LIGHTS : i32 = 4;

        /// **get** public [when](https://developer.android.com/reference/android/app/Notification.html#when)
        pub fn when<'env>(&'env self) -> i64 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "when\0", "J\0");
                env.get_long_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [when](https://developer.android.com/reference/android/app/Notification.html#when)
        pub fn set_when<'env>(&'env self, value: i64) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "when\0", "J\0");
                env.set_long_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [icon](https://developer.android.com/reference/android/app/Notification.html#icon)
        pub fn icon<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "icon\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [icon](https://developer.android.com/reference/android/app/Notification.html#icon)
        pub fn set_icon<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "icon\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [iconLevel](https://developer.android.com/reference/android/app/Notification.html#iconLevel)
        pub fn iconLevel<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "iconLevel\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [iconLevel](https://developer.android.com/reference/android/app/Notification.html#iconLevel)
        pub fn set_iconLevel<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "iconLevel\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [number](https://developer.android.com/reference/android/app/Notification.html#number)
        pub fn number<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "number\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [number](https://developer.android.com/reference/android/app/Notification.html#number)
        pub fn set_number<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "number\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [contentIntent](https://developer.android.com/reference/android/app/Notification.html#contentIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn contentIntent<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::app::PendingIntent>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "contentIntent\0", "Landroid/app/PendingIntent;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [contentIntent](https://developer.android.com/reference/android/app/Notification.html#contentIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn set_contentIntent<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::app::PendingIntent>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "contentIntent\0", "Landroid/app/PendingIntent;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [deleteIntent](https://developer.android.com/reference/android/app/Notification.html#deleteIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn deleteIntent<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::app::PendingIntent>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "deleteIntent\0", "Landroid/app/PendingIntent;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [deleteIntent](https://developer.android.com/reference/android/app/Notification.html#deleteIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn set_deleteIntent<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::app::PendingIntent>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "deleteIntent\0", "Landroid/app/PendingIntent;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [fullScreenIntent](https://developer.android.com/reference/android/app/Notification.html#fullScreenIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn fullScreenIntent<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::app::PendingIntent>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "fullScreenIntent\0", "Landroid/app/PendingIntent;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [fullScreenIntent](https://developer.android.com/reference/android/app/Notification.html#fullScreenIntent)
        ///
        /// Required feature: "android-app-PendingIntent"
        #[cfg(any(feature = "all", feature = "android-app-PendingIntent"))]
        pub fn set_fullScreenIntent<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::app::PendingIntent>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "fullScreenIntent\0", "Landroid/app/PendingIntent;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [tickerText](https://developer.android.com/reference/android/app/Notification.html#tickerText)
        ///
        /// Required feature: "java-lang-CharSequence"
        #[cfg(any(feature = "all", feature = "java-lang-CharSequence"))]
        pub fn tickerText<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::CharSequence>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "tickerText\0", "Ljava/lang/CharSequence;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [tickerText](https://developer.android.com/reference/android/app/Notification.html#tickerText)
        ///
        /// Required feature: "java-lang-CharSequence"
        #[cfg(any(feature = "all", feature = "java-lang-CharSequence"))]
        pub fn set_tickerText<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::java::lang::CharSequence>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "tickerText\0", "Ljava/lang/CharSequence;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [tickerView](https://developer.android.com/reference/android/app/Notification.html#tickerView)
        ///
        /// Required feature: "android-widget-RemoteViews"
        #[cfg(any(feature = "all", feature = "android-widget-RemoteViews"))]
        pub fn tickerView<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::widget::RemoteViews>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "tickerView\0", "Landroid/widget/RemoteViews;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [tickerView](https://developer.android.com/reference/android/app/Notification.html#tickerView)
        ///
        /// Required feature: "android-widget-RemoteViews"
        #[cfg(any(feature = "all", feature = "android-widget-RemoteViews"))]
        pub fn set_tickerView<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::widget::RemoteViews>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "tickerView\0", "Landroid/widget/RemoteViews;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [contentView](https://developer.android.com/reference/android/app/Notification.html#contentView)
        ///
        /// Required feature: "android-widget-RemoteViews"
        #[cfg(any(feature = "all", feature = "android-widget-RemoteViews"))]
        pub fn contentView<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::widget::RemoteViews>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "contentView\0", "Landroid/widget/RemoteViews;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [contentView](https://developer.android.com/reference/android/app/Notification.html#contentView)
        ///
        /// Required feature: "android-widget-RemoteViews"
        #[cfg(any(feature = "all", feature = "android-widget-RemoteViews"))]
        pub fn set_contentView<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::widget::RemoteViews>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "contentView\0", "Landroid/widget/RemoteViews;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [largeIcon](https://developer.android.com/reference/android/app/Notification.html#largeIcon)
        ///
        /// Required feature: "android-graphics-Bitmap"
        #[cfg(any(feature = "all", feature = "android-graphics-Bitmap"))]
        pub fn largeIcon<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::graphics::Bitmap>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "largeIcon\0", "Landroid/graphics/Bitmap;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [largeIcon](https://developer.android.com/reference/android/app/Notification.html#largeIcon)
        ///
        /// Required feature: "android-graphics-Bitmap"
        #[cfg(any(feature = "all", feature = "android-graphics-Bitmap"))]
        pub fn set_largeIcon<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::graphics::Bitmap>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "largeIcon\0", "Landroid/graphics/Bitmap;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [sound](https://developer.android.com/reference/android/app/Notification.html#sound)
        ///
        /// Required feature: "android-net-Uri"
        #[cfg(any(feature = "all", feature = "android-net-Uri"))]
        pub fn sound<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::net::Uri>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "sound\0", "Landroid/net/Uri;\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [sound](https://developer.android.com/reference/android/app/Notification.html#sound)
        ///
        /// Required feature: "android-net-Uri"
        #[cfg(any(feature = "all", feature = "android-net-Uri"))]
        pub fn set_sound<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj crate::android::net::Uri>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "sound\0", "Landroid/net/Uri;\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// public static final [STREAM_DEFAULT](https://developer.android.com/reference/android/app/Notification.html#STREAM_DEFAULT)
        pub const STREAM_DEFAULT : i32 = -1;

        /// **get** public [audioStreamType](https://developer.android.com/reference/android/app/Notification.html#audioStreamType)
        pub fn audioStreamType<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "audioStreamType\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [audioStreamType](https://developer.android.com/reference/android/app/Notification.html#audioStreamType)
        pub fn set_audioStreamType<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "audioStreamType\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [vibrate](https://developer.android.com/reference/android/app/Notification.html#vibrate)
        pub fn vibrate<'env>(&'env self) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::LongArray>> {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "vibrate\0", "[J\0");
                env.get_object_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [vibrate](https://developer.android.com/reference/android/app/Notification.html#vibrate)
        pub fn set_vibrate<'env, 'obj>(&'env self, value: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'obj __jni_bindgen::LongArray>>) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "vibrate\0", "[J\0");
                env.set_object_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [ledARGB](https://developer.android.com/reference/android/app/Notification.html#ledARGB)
        pub fn ledARGB<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledARGB\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [ledARGB](https://developer.android.com/reference/android/app/Notification.html#ledARGB)
        pub fn set_ledARGB<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledARGB\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [ledOnMS](https://developer.android.com/reference/android/app/Notification.html#ledOnMS)
        pub fn ledOnMS<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledOnMS\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [ledOnMS](https://developer.android.com/reference/android/app/Notification.html#ledOnMS)
        pub fn set_ledOnMS<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledOnMS\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [ledOffMS](https://developer.android.com/reference/android/app/Notification.html#ledOffMS)
        pub fn ledOffMS<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledOffMS\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [ledOffMS](https://developer.android.com/reference/android/app/Notification.html#ledOffMS)
        pub fn set_ledOffMS<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "ledOffMS\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public [defaults](https://developer.android.com/reference/android/app/Notification.html#defaults)
        pub fn defaults<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "defaults\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [defaults](https://developer.android.com/reference/android/app/Notification.html#defaults)
        pub fn set_defaults<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "defaults\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// public static final [FLAG_SHOW_LIGHTS](https://developer.android.com/reference/android/app/Notification.html#FLAG_SHOW_LIGHTS)
        pub const FLAG_SHOW_LIGHTS : i32 = 1;

        /// public static final [FLAG_ONGOING_EVENT](https://developer.android.com/reference/android/app/Notification.html#FLAG_ONGOING_EVENT)
        pub const FLAG_ONGOING_EVENT : i32 = 2;

        /// public static final [FLAG_INSISTENT](https://developer.android.com/reference/android/app/Notification.html#FLAG_INSISTENT)
        pub const FLAG_INSISTENT : i32 = 4;

        /// public static final [FLAG_ONLY_ALERT_ONCE](https://developer.android.com/reference/android/app/Notification.html#FLAG_ONLY_ALERT_ONCE)
        pub const FLAG_ONLY_ALERT_ONCE : i32 = 8;

        /// public static final [FLAG_AUTO_CANCEL](https://developer.android.com/reference/android/app/Notification.html#FLAG_AUTO_CANCEL)
        pub const FLAG_AUTO_CANCEL : i32 = 16;

        /// public static final [FLAG_NO_CLEAR](https://developer.android.com/reference/android/app/Notification.html#FLAG_NO_CLEAR)
        pub const FLAG_NO_CLEAR : i32 = 32;

        /// public static final [FLAG_FOREGROUND_SERVICE](https://developer.android.com/reference/android/app/Notification.html#FLAG_FOREGROUND_SERVICE)
        pub const FLAG_FOREGROUND_SERVICE : i32 = 64;

        /// public static final [FLAG_HIGH_PRIORITY](https://developer.android.com/reference/android/app/Notification.html#FLAG_HIGH_PRIORITY)
        pub const FLAG_HIGH_PRIORITY : i32 = 128;

        /// **get** public [flags](https://developer.android.com/reference/android/app/Notification.html#flags)
        pub fn flags<'env>(&'env self) -> i32 {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "flags\0", "I\0");
                env.get_int_field(self.0.object, __jni_field)
            }
        }

        /// **set** public [flags](https://developer.android.com/reference/android/app/Notification.html#flags)
        pub fn set_flags<'env>(&'env self, value: i32) {
            unsafe {
                let env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_field) = env.require_class_field("android/app/Notification\0", "flags\0", "I\0");
                env.set_int_field(self.0.object, __jni_field, value)
            }
        }

        /// **get** public static final [CREATOR](https://developer.android.com/reference/android/app/Notification.html#CREATOR)
        ///
        /// Required feature: "android-os-Parcelable_Creator"
        #[cfg(any(feature = "all", feature = "android-os-Parcelable_Creator"))]
        pub fn CREATOR<'env>(env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::os::Parcelable_Creator>> {
            unsafe {
                let (__jni_class, __jni_field) = env.require_class_static_field("android/app/Notification\0", "CREATOR\0", "Landroid/os/Parcelable$Creator;\0");
                env.get_static_object_field(__jni_class, __jni_field)
            }
        }
    }
}