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


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

        /// <init>
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::animation::LayoutTransition>> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setDuration](https://developer.android.com/reference/android/animation/LayoutTransition.html#setDuration(long))
        pub fn set_duration_long<'env>(&'env self, arg0: i64) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setDuration", .descriptor == "(J)V"
            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/animation/LayoutTransition\0", "setDuration\0", "(J)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [enableTransitionType](https://developer.android.com/reference/android/animation/LayoutTransition.html#enableTransitionType(int))
        pub fn enable_transition_type<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "enableTransitionType", .descriptor == "(I)V"
            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/animation/LayoutTransition\0", "enableTransitionType\0", "(I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [disableTransitionType](https://developer.android.com/reference/android/animation/LayoutTransition.html#disableTransitionType(int))
        pub fn disable_transition_type<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "disableTransitionType", .descriptor == "(I)V"
            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/animation/LayoutTransition\0", "disableTransitionType\0", "(I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [isTransitionTypeEnabled](https://developer.android.com/reference/android/animation/LayoutTransition.html#isTransitionTypeEnabled(int))
        pub fn is_transition_type_enabled<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<bool> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "isTransitionTypeEnabled", .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/animation/LayoutTransition\0", "isTransitionTypeEnabled\0", "(I)Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setStartDelay](https://developer.android.com/reference/android/animation/LayoutTransition.html#setStartDelay(int,%2520long))
        pub fn set_start_delay<'env>(&'env self, arg0: i32, arg1: i64) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setStartDelay", .descriptor == "(IJ)V"
            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/animation/LayoutTransition\0", "setStartDelay\0", "(IJ)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getStartDelay](https://developer.android.com/reference/android/animation/LayoutTransition.html#getStartDelay(int))
        pub fn get_start_delay<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<i64> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "getStartDelay", .descriptor == "(I)J"
            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/animation/LayoutTransition\0", "getStartDelay\0", "(I)J\0");
                __jni_env.call_long_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setDuration](https://developer.android.com/reference/android/animation/LayoutTransition.html#setDuration(int,%2520long))
        pub fn set_duration_int_long<'env>(&'env self, arg0: i32, arg1: i64) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setDuration", .descriptor == "(IJ)V"
            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/animation/LayoutTransition\0", "setDuration\0", "(IJ)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getDuration](https://developer.android.com/reference/android/animation/LayoutTransition.html#getDuration(int))
        pub fn get_duration<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<i64> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "getDuration", .descriptor == "(I)J"
            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/animation/LayoutTransition\0", "getDuration\0", "(I)J\0");
                __jni_env.call_long_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setStagger](https://developer.android.com/reference/android/animation/LayoutTransition.html#setStagger(int,%2520long))
        pub fn set_stagger<'env>(&'env self, arg0: i32, arg1: i64) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setStagger", .descriptor == "(IJ)V"
            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/animation/LayoutTransition\0", "setStagger\0", "(IJ)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getStagger](https://developer.android.com/reference/android/animation/LayoutTransition.html#getStagger(int))
        pub fn get_stagger<'env>(&'env self, arg0: i32) -> __jni_bindgen::Result<i64> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "getStagger", .descriptor == "(I)J"
            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/animation/LayoutTransition\0", "getStagger\0", "(I)J\0");
                __jni_env.call_long_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setInterpolator](https://developer.android.com/reference/android/animation/LayoutTransition.html#setInterpolator(int,%2520android,%2520animation,%2520TimeInterpolator))
        ///
        /// Required features: "android-animation-TimeInterpolator"
        #[cfg(any(feature = "all", all(feature = "android-animation-TimeInterpolator")))]
        pub fn set_interpolator<'env>(&'env self, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::animation::TimeInterpolator>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setInterpolator", .descriptor == "(ILandroid/animation/TimeInterpolator;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "setInterpolator\0", "(ILandroid/animation/TimeInterpolator;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [setAnimator](https://developer.android.com/reference/android/animation/LayoutTransition.html#setAnimator(int,%2520android,%2520animation,%2520Animator))
        ///
        /// Required features: "android-animation-Animator"
        #[cfg(any(feature = "all", all(feature = "android-animation-Animator")))]
        pub fn set_animator<'env>(&'env self, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::animation::Animator>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setAnimator", .descriptor == "(ILandroid/animation/Animator;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "setAnimator\0", "(ILandroid/animation/Animator;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// [setAnimateParentHierarchy](https://developer.android.com/reference/android/animation/LayoutTransition.html#setAnimateParentHierarchy(boolean))
        pub fn set_animate_parent_hierarchy<'env>(&'env self, arg0: bool) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "setAnimateParentHierarchy", .descriptor == "(Z)V"
            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/animation/LayoutTransition\0", "setAnimateParentHierarchy\0", "(Z)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [isChangingLayout](https://developer.android.com/reference/android/animation/LayoutTransition.html#isChangingLayout())
        pub fn is_changing_layout<'env>(&'env self) -> __jni_bindgen::Result<bool> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "isChangingLayout", .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/animation/LayoutTransition\0", "isChangingLayout\0", "()Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [isRunning](https://developer.android.com/reference/android/animation/LayoutTransition.html#isRunning())
        pub fn is_running<'env>(&'env self) -> __jni_bindgen::Result<bool> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "isRunning", .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/animation/LayoutTransition\0", "isRunning\0", "()Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#addChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        pub fn add_child<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "addChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "addChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [showChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#showChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        #[deprecated] pub fn show_child_view_group_view<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "showChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "showChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [showChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#showChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View,%2520int))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        pub fn show_child_view_group_view_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>, arg2: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "showChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;I)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)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "showChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#removeChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        pub fn remove_child<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "removeChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "removeChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [hideChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#hideChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        #[deprecated] pub fn hide_child_view_group_view<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "hideChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "hideChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [hideChild](https://developer.android.com/reference/android/animation/LayoutTransition.html#hideChild(android,%2520view,%2520ViewGroup,%2520android,%2520view,%2520View,%2520int))
        ///
        /// Required features: "android-view-View", "android-view-ViewGroup"
        #[cfg(any(feature = "all", all(feature = "android-view-View", feature = "android-view-ViewGroup")))]
        pub fn hide_child_view_group_view_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::ViewGroup>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::view::View>>, arg2: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "hideChild", .descriptor == "(Landroid/view/ViewGroup;Landroid/view/View;I)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)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/animation/LayoutTransition\0", "hideChild\0", "(Landroid/view/ViewGroup;Landroid/view/View;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addTransitionListener](https://developer.android.com/reference/android/animation/LayoutTransition.html#addTransitionListener(android,%2520animation,%2520LayoutTransition.TransitionListener))
        ///
        /// Required features: "android-animation-LayoutTransition_TransitionListener"
        #[cfg(any(feature = "all", all(feature = "android-animation-LayoutTransition_TransitionListener")))]
        pub fn add_transition_listener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::animation::LayoutTransition_TransitionListener>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "addTransitionListener", .descriptor == "(Landroid/animation/LayoutTransition$TransitionListener;)V"
            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/animation/LayoutTransition\0", "addTransitionListener\0", "(Landroid/animation/LayoutTransition$TransitionListener;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [removeTransitionListener](https://developer.android.com/reference/android/animation/LayoutTransition.html#removeTransitionListener(android,%2520animation,%2520LayoutTransition.TransitionListener))
        ///
        /// Required features: "android-animation-LayoutTransition_TransitionListener"
        #[cfg(any(feature = "all", all(feature = "android-animation-LayoutTransition_TransitionListener")))]
        pub fn remove_transition_listener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::animation::LayoutTransition_TransitionListener>>) -> __jni_bindgen::Result<()> {
            // class.path == "android/animation/LayoutTransition", java.flags == PUBLIC, .name == "removeTransitionListener", .descriptor == "(Landroid/animation/LayoutTransition$TransitionListener;)V"
            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/animation/LayoutTransition\0", "removeTransitionListener\0", "(Landroid/animation/LayoutTransition$TransitionListener;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// public static final [APPEARING](https://developer.android.com/reference/android/animation/LayoutTransition.html#APPEARING)
        pub const APPEARING : i32 = 2;

        /// public static final [CHANGE_APPEARING](https://developer.android.com/reference/android/animation/LayoutTransition.html#CHANGE_APPEARING)
        pub const CHANGE_APPEARING : i32 = 0;

        /// public static final [CHANGE_DISAPPEARING](https://developer.android.com/reference/android/animation/LayoutTransition.html#CHANGE_DISAPPEARING)
        pub const CHANGE_DISAPPEARING : i32 = 1;

        /// public static final [CHANGING](https://developer.android.com/reference/android/animation/LayoutTransition.html#CHANGING)
        pub const CHANGING : i32 = 4;

        /// public static final [DISAPPEARING](https://developer.android.com/reference/android/animation/LayoutTransition.html#DISAPPEARING)
        pub const DISAPPEARING : i32 = 3;
    }
}