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
// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!!
#[cfg(any(feature = "all", feature = "android-hardware-Sensor"))]
__jni_bindgen! {
/// public final class [Sensor](https://developer.android.com/reference/android/hardware/Sensor.html)
///
/// Required feature: "android-hardware-Sensor"
public final class Sensor ("android/hardware/Sensor") extends crate::java::lang::Object {
/// [getReportingMode](https://developer.android.com/reference/android/hardware/Sensor.html#getReportingMode())
pub fn getReportingMode<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getReportingMode", .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/hardware/Sensor\0", "getReportingMode\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getName](https://developer.android.com/reference/android/hardware/Sensor.html#getName())
///
/// Required features: "java-lang-String"
#[cfg(any(feature = "all", all(feature = "java-lang-String")))]
pub fn getName<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getName", .descriptor == "()Ljava/lang/String;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/hardware/Sensor\0", "getName\0", "()Ljava/lang/String;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getVendor](https://developer.android.com/reference/android/hardware/Sensor.html#getVendor())
///
/// Required features: "java-lang-String"
#[cfg(any(feature = "all", all(feature = "java-lang-String")))]
pub fn getVendor<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getVendor", .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/hardware/Sensor\0", "getVendor\0", "()Ljava/lang/String;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getType](https://developer.android.com/reference/android/hardware/Sensor.html#getType())
pub fn getType<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getType", .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/hardware/Sensor\0", "getType\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getVersion](https://developer.android.com/reference/android/hardware/Sensor.html#getVersion())
pub fn getVersion<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getVersion", .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/hardware/Sensor\0", "getVersion\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getMaximumRange](https://developer.android.com/reference/android/hardware/Sensor.html#getMaximumRange())
pub fn getMaximumRange<'env>(&'env self) -> __jni_bindgen::std::result::Result<f32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getMaximumRange", .descriptor == "()F"
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/hardware/Sensor\0", "getMaximumRange\0", "()F\0");
__jni_env.call_float_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getResolution](https://developer.android.com/reference/android/hardware/Sensor.html#getResolution())
pub fn getResolution<'env>(&'env self) -> __jni_bindgen::std::result::Result<f32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getResolution", .descriptor == "()F"
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/hardware/Sensor\0", "getResolution\0", "()F\0");
__jni_env.call_float_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getPower](https://developer.android.com/reference/android/hardware/Sensor.html#getPower())
pub fn getPower<'env>(&'env self) -> __jni_bindgen::std::result::Result<f32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getPower", .descriptor == "()F"
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/hardware/Sensor\0", "getPower\0", "()F\0");
__jni_env.call_float_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getMinDelay](https://developer.android.com/reference/android/hardware/Sensor.html#getMinDelay())
pub fn getMinDelay<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getMinDelay", .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/hardware/Sensor\0", "getMinDelay\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getFifoReservedEventCount](https://developer.android.com/reference/android/hardware/Sensor.html#getFifoReservedEventCount())
pub fn getFifoReservedEventCount<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getFifoReservedEventCount", .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/hardware/Sensor\0", "getFifoReservedEventCount\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getFifoMaxEventCount](https://developer.android.com/reference/android/hardware/Sensor.html#getFifoMaxEventCount())
pub fn getFifoMaxEventCount<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getFifoMaxEventCount", .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/hardware/Sensor\0", "getFifoMaxEventCount\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getStringType](https://developer.android.com/reference/android/hardware/Sensor.html#getStringType())
///
/// Required features: "java-lang-String"
#[cfg(any(feature = "all", all(feature = "java-lang-String")))]
pub fn getStringType<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getStringType", .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/hardware/Sensor\0", "getStringType\0", "()Ljava/lang/String;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getMaxDelay](https://developer.android.com/reference/android/hardware/Sensor.html#getMaxDelay())
pub fn getMaxDelay<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "getMaxDelay", .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/hardware/Sensor\0", "getMaxDelay\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [isWakeUpSensor](https://developer.android.com/reference/android/hardware/Sensor.html#isWakeUpSensor())
pub fn isWakeUpSensor<'env>(&'env self) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "isWakeUpSensor", .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/hardware/Sensor\0", "isWakeUpSensor\0", "()Z\0");
__jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [toString](https://developer.android.com/reference/android/hardware/Sensor.html#toString())
///
/// Required features: "java-lang-String"
#[cfg(any(feature = "all", all(feature = "java-lang-String")))]
pub fn toString<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/hardware/Sensor", java.flags == PUBLIC, .name == "toString", .descriptor == "()Ljava/lang/String;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/hardware/Sensor\0", "toString\0", "()Ljava/lang/String;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// public static final [REPORTING_MODE_CONTINUOUS](https://developer.android.com/reference/android/hardware/Sensor.html#REPORTING_MODE_CONTINUOUS)
pub const REPORTING_MODE_CONTINUOUS : i32 = 0;
/// public static final [REPORTING_MODE_ONE_SHOT](https://developer.android.com/reference/android/hardware/Sensor.html#REPORTING_MODE_ONE_SHOT)
pub const REPORTING_MODE_ONE_SHOT : i32 = 2;
/// public static final [REPORTING_MODE_ON_CHANGE](https://developer.android.com/reference/android/hardware/Sensor.html#REPORTING_MODE_ON_CHANGE)
pub const REPORTING_MODE_ON_CHANGE : i32 = 1;
/// public static final [REPORTING_MODE_SPECIAL_TRIGGER](https://developer.android.com/reference/android/hardware/Sensor.html#REPORTING_MODE_SPECIAL_TRIGGER)
pub const REPORTING_MODE_SPECIAL_TRIGGER : i32 = 3;
/// public static final [STRING_TYPE_ACCELEROMETER](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_ACCELEROMETER)
pub const STRING_TYPE_ACCELEROMETER : &'static str = "android.sensor.accelerometer";
/// public static final [STRING_TYPE_AMBIENT_TEMPERATURE](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_AMBIENT_TEMPERATURE)
pub const STRING_TYPE_AMBIENT_TEMPERATURE : &'static str = "android.sensor.ambient_temperature";
/// public static final [STRING_TYPE_GAME_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_GAME_ROTATION_VECTOR)
pub const STRING_TYPE_GAME_ROTATION_VECTOR : &'static str = "android.sensor.game_rotation_vector";
/// public static final [STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR)
pub const STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR : &'static str = "android.sensor.geomagnetic_rotation_vector";
/// public static final [STRING_TYPE_GRAVITY](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_GRAVITY)
pub const STRING_TYPE_GRAVITY : &'static str = "android.sensor.gravity";
/// public static final [STRING_TYPE_GYROSCOPE](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_GYROSCOPE)
pub const STRING_TYPE_GYROSCOPE : &'static str = "android.sensor.gyroscope";
/// public static final [STRING_TYPE_GYROSCOPE_UNCALIBRATED](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_GYROSCOPE_UNCALIBRATED)
pub const STRING_TYPE_GYROSCOPE_UNCALIBRATED : &'static str = "android.sensor.gyroscope_uncalibrated";
/// public static final [STRING_TYPE_HEART_RATE](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_HEART_RATE)
pub const STRING_TYPE_HEART_RATE : &'static str = "android.sensor.heart_rate";
/// public static final [STRING_TYPE_LIGHT](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_LIGHT)
pub const STRING_TYPE_LIGHT : &'static str = "android.sensor.light";
/// public static final [STRING_TYPE_LINEAR_ACCELERATION](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_LINEAR_ACCELERATION)
pub const STRING_TYPE_LINEAR_ACCELERATION : &'static str = "android.sensor.linear_acceleration";
/// public static final [STRING_TYPE_MAGNETIC_FIELD](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_MAGNETIC_FIELD)
pub const STRING_TYPE_MAGNETIC_FIELD : &'static str = "android.sensor.magnetic_field";
/// public static final [STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED)
pub const STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED : &'static str = "android.sensor.magnetic_field_uncalibrated";
/// public static final [STRING_TYPE_ORIENTATION](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_ORIENTATION)
#[deprecated] pub const STRING_TYPE_ORIENTATION : &'static str = "android.sensor.orientation";
/// public static final [STRING_TYPE_PRESSURE](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_PRESSURE)
pub const STRING_TYPE_PRESSURE : &'static str = "android.sensor.pressure";
/// public static final [STRING_TYPE_PROXIMITY](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_PROXIMITY)
pub const STRING_TYPE_PROXIMITY : &'static str = "android.sensor.proximity";
/// public static final [STRING_TYPE_RELATIVE_HUMIDITY](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_RELATIVE_HUMIDITY)
pub const STRING_TYPE_RELATIVE_HUMIDITY : &'static str = "android.sensor.relative_humidity";
/// public static final [STRING_TYPE_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_ROTATION_VECTOR)
pub const STRING_TYPE_ROTATION_VECTOR : &'static str = "android.sensor.rotation_vector";
/// public static final [STRING_TYPE_SIGNIFICANT_MOTION](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_SIGNIFICANT_MOTION)
pub const STRING_TYPE_SIGNIFICANT_MOTION : &'static str = "android.sensor.significant_motion";
/// public static final [STRING_TYPE_STEP_COUNTER](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_STEP_COUNTER)
pub const STRING_TYPE_STEP_COUNTER : &'static str = "android.sensor.step_counter";
/// public static final [STRING_TYPE_STEP_DETECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_STEP_DETECTOR)
pub const STRING_TYPE_STEP_DETECTOR : &'static str = "android.sensor.step_detector";
/// public static final [STRING_TYPE_TEMPERATURE](https://developer.android.com/reference/android/hardware/Sensor.html#STRING_TYPE_TEMPERATURE)
#[deprecated] pub const STRING_TYPE_TEMPERATURE : &'static str = "android.sensor.temperature";
/// public static final [TYPE_ACCELEROMETER](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_ACCELEROMETER)
pub const TYPE_ACCELEROMETER : i32 = 1;
/// public static final [TYPE_ALL](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_ALL)
pub const TYPE_ALL : i32 = -1;
/// public static final [TYPE_AMBIENT_TEMPERATURE](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_AMBIENT_TEMPERATURE)
pub const TYPE_AMBIENT_TEMPERATURE : i32 = 13;
/// public static final [TYPE_GAME_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_GAME_ROTATION_VECTOR)
pub const TYPE_GAME_ROTATION_VECTOR : i32 = 15;
/// public static final [TYPE_GEOMAGNETIC_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_GEOMAGNETIC_ROTATION_VECTOR)
pub const TYPE_GEOMAGNETIC_ROTATION_VECTOR : i32 = 20;
/// public static final [TYPE_GRAVITY](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_GRAVITY)
pub const TYPE_GRAVITY : i32 = 9;
/// public static final [TYPE_GYROSCOPE](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_GYROSCOPE)
pub const TYPE_GYROSCOPE : i32 = 4;
/// public static final [TYPE_GYROSCOPE_UNCALIBRATED](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_GYROSCOPE_UNCALIBRATED)
pub const TYPE_GYROSCOPE_UNCALIBRATED : i32 = 16;
/// public static final [TYPE_HEART_RATE](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_HEART_RATE)
pub const TYPE_HEART_RATE : i32 = 21;
/// public static final [TYPE_LIGHT](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_LIGHT)
pub const TYPE_LIGHT : i32 = 5;
/// public static final [TYPE_LINEAR_ACCELERATION](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_LINEAR_ACCELERATION)
pub const TYPE_LINEAR_ACCELERATION : i32 = 10;
/// public static final [TYPE_MAGNETIC_FIELD](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_MAGNETIC_FIELD)
pub const TYPE_MAGNETIC_FIELD : i32 = 2;
/// public static final [TYPE_MAGNETIC_FIELD_UNCALIBRATED](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_MAGNETIC_FIELD_UNCALIBRATED)
pub const TYPE_MAGNETIC_FIELD_UNCALIBRATED : i32 = 14;
/// public static final [TYPE_ORIENTATION](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_ORIENTATION)
#[deprecated] pub const TYPE_ORIENTATION : i32 = 3;
/// public static final [TYPE_PRESSURE](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_PRESSURE)
pub const TYPE_PRESSURE : i32 = 6;
/// public static final [TYPE_PROXIMITY](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_PROXIMITY)
pub const TYPE_PROXIMITY : i32 = 8;
/// public static final [TYPE_RELATIVE_HUMIDITY](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_RELATIVE_HUMIDITY)
pub const TYPE_RELATIVE_HUMIDITY : i32 = 12;
/// public static final [TYPE_ROTATION_VECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_ROTATION_VECTOR)
pub const TYPE_ROTATION_VECTOR : i32 = 11;
/// public static final [TYPE_SIGNIFICANT_MOTION](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_SIGNIFICANT_MOTION)
pub const TYPE_SIGNIFICANT_MOTION : i32 = 17;
/// public static final [TYPE_STEP_COUNTER](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_STEP_COUNTER)
pub const TYPE_STEP_COUNTER : i32 = 19;
/// public static final [TYPE_STEP_DETECTOR](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_STEP_DETECTOR)
pub const TYPE_STEP_DETECTOR : i32 = 18;
/// public static final [TYPE_TEMPERATURE](https://developer.android.com/reference/android/hardware/Sensor.html#TYPE_TEMPERATURE)
#[deprecated] pub const TYPE_TEMPERATURE : i32 = 7;
}
}