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
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


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

        /// [getDevice](https://developer.android.com/reference/android/view/InputDevice.html#getDevice(int))
        ///
        /// Required features: "android-view-InputDevice"
        #[cfg(any(feature = "all", all(feature = "android-view-InputDevice")))]
        pub fn getDevice<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::InputDevice>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC | STATIC, .name == "getDevice", .descriptor == "(I)Landroid/view/InputDevice;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/view/InputDevice\0", "getDevice\0", "(I)Landroid/view/InputDevice;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getDeviceIds](https://developer.android.com/reference/android/view/InputDevice.html#getDeviceIds())
        pub fn getDeviceIds<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::IntArray>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC | STATIC, .name == "getDeviceIds", .descriptor == "()[I"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/view/InputDevice\0", "getDeviceIds\0", "()[I\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

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

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

        /// [getDescriptor](https://developer.android.com/reference/android/view/InputDevice.html#getDescriptor())
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn getDescriptor<'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/view/InputDevice", java.flags == PUBLIC, .name == "getDescriptor", .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/view/InputDevice\0", "getDescriptor\0", "()Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [getName](https://developer.android.com/reference/android/view/InputDevice.html#getName())
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn getName<'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/view/InputDevice", java.flags == PUBLIC, .name == "getName", .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/view/InputDevice\0", "getName\0", "()Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [supportsSource](https://developer.android.com/reference/android/view/InputDevice.html#supportsSource(int))
        pub fn supportsSource<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC, .name == "supportsSource", .descriptor == "(I)Z"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/view/InputDevice\0", "supportsSource\0", "(I)Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

        /// [hasKeys](https://developer.android.com/reference/android/view/InputDevice.html#hasKeys(int...))
        pub fn hasKeys<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::IntArray>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::BooleanArray>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC | VARARGS, .name == "hasKeys", .descriptor == "([I)[Z"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/view/InputDevice\0", "hasKeys\0", "([I)[Z\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getMotionRange](https://developer.android.com/reference/android/view/InputDevice.html#getMotionRange(int))
        ///
        /// Required features: "android-view-InputDevice_MotionRange"
        #[cfg(any(feature = "all", all(feature = "android-view-InputDevice_MotionRange")))]
        pub fn getMotionRange_int<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::InputDevice_MotionRange>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC, .name == "getMotionRange", .descriptor == "(I)Landroid/view/InputDevice$MotionRange;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/view/InputDevice\0", "getMotionRange\0", "(I)Landroid/view/InputDevice$MotionRange;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getMotionRange](https://developer.android.com/reference/android/view/InputDevice.html#getMotionRange(int,%20int))
        ///
        /// Required features: "android-view-InputDevice_MotionRange"
        #[cfg(any(feature = "all", all(feature = "android-view-InputDevice_MotionRange")))]
        pub fn getMotionRange_int_int<'env>(&'env self, arg0: i32, arg1: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::view::InputDevice_MotionRange>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/view/InputDevice", java.flags == PUBLIC, .name == "getMotionRange", .descriptor == "(II)Landroid/view/InputDevice$MotionRange;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __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/view/InputDevice\0", "getMotionRange\0", "(II)Landroid/view/InputDevice$MotionRange;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

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

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

        /// [writeToParcel](https://developer.android.com/reference/android/view/InputDevice.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/view/InputDevice", 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/view/InputDevice\0", "writeToParcel\0", "(Landroid/os/Parcel;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [describeContents](https://developer.android.com/reference/android/view/InputDevice.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/view/InputDevice", 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/view/InputDevice\0", "describeContents\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [toString](https://developer.android.com/reference/android/view/InputDevice.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/view/InputDevice", 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/view/InputDevice\0", "toString\0", "()Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// **get** public static final [CREATOR](https://developer.android.com/reference/android/view/InputDevice.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/view/InputDevice\0", "CREATOR\0", "Landroid/os/Parcelable$Creator;\0");
                env.get_static_object_field(__jni_class, __jni_field)
            }
        }

        /// public static final [KEYBOARD_TYPE_ALPHABETIC](https://developer.android.com/reference/android/view/InputDevice.html#KEYBOARD_TYPE_ALPHABETIC)
        pub const KEYBOARD_TYPE_ALPHABETIC : i32 = 2;

        /// public static final [KEYBOARD_TYPE_NONE](https://developer.android.com/reference/android/view/InputDevice.html#KEYBOARD_TYPE_NONE)
        pub const KEYBOARD_TYPE_NONE : i32 = 0;

        /// public static final [KEYBOARD_TYPE_NON_ALPHABETIC](https://developer.android.com/reference/android/view/InputDevice.html#KEYBOARD_TYPE_NON_ALPHABETIC)
        pub const KEYBOARD_TYPE_NON_ALPHABETIC : i32 = 1;

        /// public static final [MOTION_RANGE_ORIENTATION](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_ORIENTATION)
        #[deprecated] pub const MOTION_RANGE_ORIENTATION : i32 = 8;

        /// public static final [MOTION_RANGE_PRESSURE](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_PRESSURE)
        #[deprecated] pub const MOTION_RANGE_PRESSURE : i32 = 2;

        /// public static final [MOTION_RANGE_SIZE](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_SIZE)
        #[deprecated] pub const MOTION_RANGE_SIZE : i32 = 3;

        /// public static final [MOTION_RANGE_TOOL_MAJOR](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_TOOL_MAJOR)
        #[deprecated] pub const MOTION_RANGE_TOOL_MAJOR : i32 = 6;

        /// public static final [MOTION_RANGE_TOOL_MINOR](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_TOOL_MINOR)
        #[deprecated] pub const MOTION_RANGE_TOOL_MINOR : i32 = 7;

        /// public static final [MOTION_RANGE_TOUCH_MAJOR](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_TOUCH_MAJOR)
        #[deprecated] pub const MOTION_RANGE_TOUCH_MAJOR : i32 = 4;

        /// public static final [MOTION_RANGE_TOUCH_MINOR](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_TOUCH_MINOR)
        #[deprecated] pub const MOTION_RANGE_TOUCH_MINOR : i32 = 5;

        /// public static final [MOTION_RANGE_X](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_X)
        #[deprecated] pub const MOTION_RANGE_X : i32 = 0;

        /// public static final [MOTION_RANGE_Y](https://developer.android.com/reference/android/view/InputDevice.html#MOTION_RANGE_Y)
        #[deprecated] pub const MOTION_RANGE_Y : i32 = 1;

        /// public static final [SOURCE_ANY](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_ANY)
        pub const SOURCE_ANY : i32 = -256;

        /// public static final [SOURCE_BLUETOOTH_STYLUS](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_BLUETOOTH_STYLUS)
        pub const SOURCE_BLUETOOTH_STYLUS : i32 = 49154;

        /// public static final [SOURCE_CLASS_BUTTON](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_BUTTON)
        pub const SOURCE_CLASS_BUTTON : i32 = 1;

        /// public static final [SOURCE_CLASS_JOYSTICK](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_JOYSTICK)
        pub const SOURCE_CLASS_JOYSTICK : i32 = 16;

        /// public static final [SOURCE_CLASS_MASK](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_MASK)
        pub const SOURCE_CLASS_MASK : i32 = 255;

        /// public static final [SOURCE_CLASS_NONE](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_NONE)
        pub const SOURCE_CLASS_NONE : i32 = 0;

        /// public static final [SOURCE_CLASS_POINTER](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_POINTER)
        pub const SOURCE_CLASS_POINTER : i32 = 2;

        /// public static final [SOURCE_CLASS_POSITION](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_POSITION)
        pub const SOURCE_CLASS_POSITION : i32 = 8;

        /// public static final [SOURCE_CLASS_TRACKBALL](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_CLASS_TRACKBALL)
        pub const SOURCE_CLASS_TRACKBALL : i32 = 4;

        /// public static final [SOURCE_DPAD](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_DPAD)
        pub const SOURCE_DPAD : i32 = 513;

        /// public static final [SOURCE_GAMEPAD](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_GAMEPAD)
        pub const SOURCE_GAMEPAD : i32 = 1025;

        /// public static final [SOURCE_HDMI](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_HDMI)
        pub const SOURCE_HDMI : i32 = 33554433;

        /// public static final [SOURCE_JOYSTICK](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_JOYSTICK)
        pub const SOURCE_JOYSTICK : i32 = 16777232;

        /// public static final [SOURCE_KEYBOARD](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_KEYBOARD)
        pub const SOURCE_KEYBOARD : i32 = 257;

        /// public static final [SOURCE_MOUSE](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_MOUSE)
        pub const SOURCE_MOUSE : i32 = 8194;

        /// public static final [SOURCE_MOUSE_RELATIVE](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_MOUSE_RELATIVE)
        pub const SOURCE_MOUSE_RELATIVE : i32 = 131076;

        /// public static final [SOURCE_ROTARY_ENCODER](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_ROTARY_ENCODER)
        pub const SOURCE_ROTARY_ENCODER : i32 = 4194304;

        /// public static final [SOURCE_STYLUS](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_STYLUS)
        pub const SOURCE_STYLUS : i32 = 16386;

        /// public static final [SOURCE_TOUCHPAD](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_TOUCHPAD)
        pub const SOURCE_TOUCHPAD : i32 = 1048584;

        /// public static final [SOURCE_TOUCHSCREEN](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_TOUCHSCREEN)
        pub const SOURCE_TOUCHSCREEN : i32 = 4098;

        /// public static final [SOURCE_TOUCH_NAVIGATION](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_TOUCH_NAVIGATION)
        pub const SOURCE_TOUCH_NAVIGATION : i32 = 2097152;

        /// public static final [SOURCE_TRACKBALL](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_TRACKBALL)
        pub const SOURCE_TRACKBALL : i32 = 65540;

        /// public static final [SOURCE_UNKNOWN](https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_UNKNOWN)
        pub const SOURCE_UNKNOWN : i32 = 0;
    }
}