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


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

        /// [getAttributeCount](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeCount())
        pub fn get_attribute_count<'env>(&'env self) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeCount", .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/util/AttributeSet\0", "getAttributeCount\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

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

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

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

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

        // // Not emitting: Passing in arrays of objects is not yet supported
        // /// getAttributeListValue
        // ///
        // /// Required features: "java-lang-String"
        // #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        // pub fn get_attribute_list_value_string_string_string_array_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: Array { levels: 1, inner: Class(Id("java/lang/String")) }, arg3: i32) -> __jni_bindgen::Result<i32> {
        //     // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeListValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;I)I"
        //     unsafe {
        //         let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3)];
        //         let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (__jni_class, __jni_method) = __jni_env.require_class_method("android/util/AttributeSet\0", "getAttributeListValue\0", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;I)I\0");
        //         __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
        //     }
        // }

        /// [getAttributeBooleanValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeBooleanValue(java,%2520lang,%2520String,%2520java,%2520lang,%2520String,%2520boolean))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn get_attribute_boolean_value_string_string_boolean<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: bool) -> __jni_bindgen::Result<bool> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeBooleanValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;Z)Z"
            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/util/AttributeSet\0", "getAttributeBooleanValue\0", "(Ljava/lang/String;Ljava/lang/String;Z)Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeResourceValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeResourceValue(java,%2520lang,%2520String,%2520java,%2520lang,%2520String,%2520int))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn get_attribute_resource_value_string_string_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeResourceValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;I)I"
            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/util/AttributeSet\0", "getAttributeResourceValue\0", "(Ljava/lang/String;Ljava/lang/String;I)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeIntValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeIntValue(java,%2520lang,%2520String,%2520java,%2520lang,%2520String,%2520int))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn get_attribute_int_value_string_string_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeIntValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;I)I"
            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/util/AttributeSet\0", "getAttributeIntValue\0", "(Ljava/lang/String;Ljava/lang/String;I)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeUnsignedIntValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeUnsignedIntValue(java,%2520lang,%2520String,%2520java,%2520lang,%2520String,%2520int))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn get_attribute_unsigned_int_value_string_string_int<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeUnsignedIntValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;I)I"
            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/util/AttributeSet\0", "getAttributeUnsignedIntValue\0", "(Ljava/lang/String;Ljava/lang/String;I)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeFloatValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeFloatValue(java,%2520lang,%2520String,%2520java,%2520lang,%2520String,%2520float))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn get_attribute_float_value_string_string_float<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg2: f32) -> __jni_bindgen::Result<f32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeFloatValue", .descriptor == "(Ljava/lang/String;Ljava/lang/String;F)F"
            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/util/AttributeSet\0", "getAttributeFloatValue\0", "(Ljava/lang/String;Ljava/lang/String;F)F\0");
                __jni_env.call_float_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        // // Not emitting: Passing in arrays of objects is not yet supported
        // /// getAttributeListValue
        // ///
        // /// Required features: "java-lang-String"
        // #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        // pub fn get_attribute_list_value_int_string_array_int<'env>(&'env self, arg0: i32, arg1: Array { levels: 1, inner: Class(Id("java/lang/String")) }, arg2: i32) -> __jni_bindgen::Result<i32> {
        //     // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeListValue", .descriptor == "(I[Ljava/lang/String;I)I"
        //     unsafe {
        //         let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
        //         let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
        //         let (__jni_class, __jni_method) = __jni_env.require_class_method("android/util/AttributeSet\0", "getAttributeListValue\0", "(I[Ljava/lang/String;I)I\0");
        //         __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
        //     }
        // }

        /// [getAttributeBooleanValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeBooleanValue(int,%2520boolean))
        pub fn get_attribute_boolean_value_int_boolean<'env>(&'env self, arg0: i32, arg1: bool) -> __jni_bindgen::Result<bool> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeBooleanValue", .descriptor == "(IZ)Z"
            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/util/AttributeSet\0", "getAttributeBooleanValue\0", "(IZ)Z\0");
                __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeResourceValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeResourceValue(int,%2520int))
        pub fn get_attribute_resource_value_int_int<'env>(&'env self, arg0: i32, arg1: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeResourceValue", .descriptor == "(II)I"
            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/util/AttributeSet\0", "getAttributeResourceValue\0", "(II)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeIntValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeIntValue(int,%2520int))
        pub fn get_attribute_int_value_int_int<'env>(&'env self, arg0: i32, arg1: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeIntValue", .descriptor == "(II)I"
            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/util/AttributeSet\0", "getAttributeIntValue\0", "(II)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeUnsignedIntValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeUnsignedIntValue(int,%2520int))
        pub fn get_attribute_unsigned_int_value_int_int<'env>(&'env self, arg0: i32, arg1: i32) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeUnsignedIntValue", .descriptor == "(II)I"
            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/util/AttributeSet\0", "getAttributeUnsignedIntValue\0", "(II)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getAttributeFloatValue](https://developer.android.com/reference/android/util/AttributeSet.html#getAttributeFloatValue(int,%2520float))
        pub fn get_attribute_float_value_int_float<'env>(&'env self, arg0: i32, arg1: f32) -> __jni_bindgen::Result<f32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getAttributeFloatValue", .descriptor == "(IF)F"
            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/util/AttributeSet\0", "getAttributeFloatValue\0", "(IF)F\0");
                __jni_env.call_float_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

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

        /// [getStyleAttribute](https://developer.android.com/reference/android/util/AttributeSet.html#getStyleAttribute())
        pub fn get_style_attribute<'env>(&'env self) -> __jni_bindgen::Result<i32> {
            // class.path == "android/util/AttributeSet", java.flags == PUBLIC | ABSTRACT, .name == "getStyleAttribute", .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/util/AttributeSet\0", "getStyleAttribute\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}