#[cfg(any(feature = "all", feature = "android-util-MutableByte"))]
__jni_bindgen! {
#[deprecated] public final class MutableByte ("android/util/MutableByte") extends crate::java::lang::Object {
pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: i8) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::util::MutableByte>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/util/MutableByte\0", "<init>\0", "(B)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
pub fn value<'env>(&'env self) -> i8 {
unsafe {
let env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_field) = env.require_class_field("android/util/MutableByte\0", "value\0", "B\0");
env.get_byte_field(self.0.object, __jni_field)
}
}
pub fn set_value<'env>(&'env self, value: i8) {
unsafe {
let env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_field) = env.require_class_field("android/util/MutableByte\0", "value\0", "B\0");
env.set_byte_field(self.0.object, __jni_field, value)
}
}
}
}