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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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