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


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

        /// <init>
        ///
        /// Required features: "android-os-PersistableBundle", "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "android-os-PersistableBundle", feature = "java-lang-String")))]
        pub fn new_string_persistable_bundle<'env>(__jni_env: &'env __jni_bindgen::Env, 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::android::os::PersistableBundle>>) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::text::style::TtsSpan>> {
            // class.path == "android/text/style/TtsSpan", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Ljava/lang/String;Landroid/os/PersistableBundle;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/text/style/TtsSpan\0", "<init>\0", "(Ljava/lang/String;Landroid/os/PersistableBundle;)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// <init>
        ///
        /// Required features: "android-os-Parcel"
        #[cfg(any(feature = "all", all(feature = "android-os-Parcel")))]
        pub fn new_parcel<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Parcel>>) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::text::style::TtsSpan>> {
            // class.path == "android/text/style/TtsSpan", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/os/Parcel;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/text/style/TtsSpan\0", "<init>\0", "(Landroid/os/Parcel;)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

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

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

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

        /// [writeToParcel](https://developer.android.com/reference/android/text/style/TtsSpan.html#writeToParcel(android,%2520os,%2520Parcel,%2520int))
        ///
        /// Required features: "android-os-Parcel"
        #[cfg(any(feature = "all", all(feature = "android-os-Parcel")))]
        pub fn write_to_parcel<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Parcel>>, arg1: i32) -> __jni_bindgen::Result<()> {
            // class.path == "android/text/style/TtsSpan", java.flags == PUBLIC, .name == "writeToParcel", .descriptor == "(Landroid/os/Parcel;I)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __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/text/style/TtsSpan\0", "writeToParcel\0", "(Landroid/os/Parcel;I)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

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

        /// public static final [ANIMACY_ANIMATE](https://developer.android.com/reference/android/text/style/TtsSpan.html#ANIMACY_ANIMATE)
        pub const ANIMACY_ANIMATE : &'static str = "android.animate";

        /// public static final [ANIMACY_INANIMATE](https://developer.android.com/reference/android/text/style/TtsSpan.html#ANIMACY_INANIMATE)
        pub const ANIMACY_INANIMATE : &'static str = "android.inanimate";

        /// public static final [ARG_ANIMACY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_ANIMACY)
        pub const ARG_ANIMACY : &'static str = "android.arg.animacy";

        /// public static final [ARG_CASE](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_CASE)
        pub const ARG_CASE : &'static str = "android.arg.case";

        /// public static final [ARG_COUNTRY_CODE](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_COUNTRY_CODE)
        pub const ARG_COUNTRY_CODE : &'static str = "android.arg.country_code";

        /// public static final [ARG_CURRENCY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_CURRENCY)
        pub const ARG_CURRENCY : &'static str = "android.arg.money";

        /// public static final [ARG_DAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_DAY)
        pub const ARG_DAY : &'static str = "android.arg.day";

        /// public static final [ARG_DENOMINATOR](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_DENOMINATOR)
        pub const ARG_DENOMINATOR : &'static str = "android.arg.denominator";

        /// public static final [ARG_DIGITS](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_DIGITS)
        pub const ARG_DIGITS : &'static str = "android.arg.digits";

        /// public static final [ARG_DOMAIN](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_DOMAIN)
        pub const ARG_DOMAIN : &'static str = "android.arg.domain";

        /// public static final [ARG_EXTENSION](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_EXTENSION)
        pub const ARG_EXTENSION : &'static str = "android.arg.extension";

        /// public static final [ARG_FRACTIONAL_PART](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_FRACTIONAL_PART)
        pub const ARG_FRACTIONAL_PART : &'static str = "android.arg.fractional_part";

        /// public static final [ARG_FRAGMENT_ID](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_FRAGMENT_ID)
        pub const ARG_FRAGMENT_ID : &'static str = "android.arg.fragment_id";

        /// public static final [ARG_GENDER](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_GENDER)
        pub const ARG_GENDER : &'static str = "android.arg.gender";

        /// public static final [ARG_HOURS](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_HOURS)
        pub const ARG_HOURS : &'static str = "android.arg.hours";

        /// public static final [ARG_INTEGER_PART](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_INTEGER_PART)
        pub const ARG_INTEGER_PART : &'static str = "android.arg.integer_part";

        /// public static final [ARG_MINUTES](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_MINUTES)
        pub const ARG_MINUTES : &'static str = "android.arg.minutes";

        /// public static final [ARG_MONTH](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_MONTH)
        pub const ARG_MONTH : &'static str = "android.arg.month";

        /// public static final [ARG_MULTIPLICITY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_MULTIPLICITY)
        pub const ARG_MULTIPLICITY : &'static str = "android.arg.multiplicity";

        /// public static final [ARG_NUMBER](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_NUMBER)
        pub const ARG_NUMBER : &'static str = "android.arg.number";

        /// public static final [ARG_NUMBER_PARTS](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_NUMBER_PARTS)
        pub const ARG_NUMBER_PARTS : &'static str = "android.arg.number_parts";

        /// public static final [ARG_NUMERATOR](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_NUMERATOR)
        pub const ARG_NUMERATOR : &'static str = "android.arg.numerator";

        /// public static final [ARG_PASSWORD](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_PASSWORD)
        pub const ARG_PASSWORD : &'static str = "android.arg.password";

        /// public static final [ARG_PATH](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_PATH)
        pub const ARG_PATH : &'static str = "android.arg.path";

        /// public static final [ARG_PORT](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_PORT)
        pub const ARG_PORT : &'static str = "android.arg.port";

        /// public static final [ARG_PROTOCOL](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_PROTOCOL)
        pub const ARG_PROTOCOL : &'static str = "android.arg.protocol";

        /// public static final [ARG_QUANTITY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_QUANTITY)
        pub const ARG_QUANTITY : &'static str = "android.arg.quantity";

        /// public static final [ARG_QUERY_STRING](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_QUERY_STRING)
        pub const ARG_QUERY_STRING : &'static str = "android.arg.query_string";

        /// public static final [ARG_TEXT](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_TEXT)
        pub const ARG_TEXT : &'static str = "android.arg.text";

        /// public static final [ARG_UNIT](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_UNIT)
        pub const ARG_UNIT : &'static str = "android.arg.unit";

        /// public static final [ARG_USERNAME](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_USERNAME)
        pub const ARG_USERNAME : &'static str = "android.arg.username";

        /// public static final [ARG_VERBATIM](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_VERBATIM)
        pub const ARG_VERBATIM : &'static str = "android.arg.verbatim";

        /// public static final [ARG_WEEKDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_WEEKDAY)
        pub const ARG_WEEKDAY : &'static str = "android.arg.weekday";

        /// public static final [ARG_YEAR](https://developer.android.com/reference/android/text/style/TtsSpan.html#ARG_YEAR)
        pub const ARG_YEAR : &'static str = "android.arg.year";

        /// public static final [CASE_ABLATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_ABLATIVE)
        pub const CASE_ABLATIVE : &'static str = "android.ablative";

        /// public static final [CASE_ACCUSATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_ACCUSATIVE)
        pub const CASE_ACCUSATIVE : &'static str = "android.accusative";

        /// public static final [CASE_DATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_DATIVE)
        pub const CASE_DATIVE : &'static str = "android.dative";

        /// public static final [CASE_GENITIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_GENITIVE)
        pub const CASE_GENITIVE : &'static str = "android.genitive";

        /// public static final [CASE_INSTRUMENTAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_INSTRUMENTAL)
        pub const CASE_INSTRUMENTAL : &'static str = "android.instrumental";

        /// public static final [CASE_LOCATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_LOCATIVE)
        pub const CASE_LOCATIVE : &'static str = "android.locative";

        /// public static final [CASE_NOMINATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_NOMINATIVE)
        pub const CASE_NOMINATIVE : &'static str = "android.nominative";

        /// public static final [CASE_VOCATIVE](https://developer.android.com/reference/android/text/style/TtsSpan.html#CASE_VOCATIVE)
        pub const CASE_VOCATIVE : &'static str = "android.vocative";

        /// public static final [GENDER_FEMALE](https://developer.android.com/reference/android/text/style/TtsSpan.html#GENDER_FEMALE)
        pub const GENDER_FEMALE : &'static str = "android.female";

        /// public static final [GENDER_MALE](https://developer.android.com/reference/android/text/style/TtsSpan.html#GENDER_MALE)
        pub const GENDER_MALE : &'static str = "android.male";

        /// public static final [GENDER_NEUTRAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#GENDER_NEUTRAL)
        pub const GENDER_NEUTRAL : &'static str = "android.neutral";

        /// public static final [MONTH_APRIL](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_APRIL)
        pub const MONTH_APRIL : i32 = 3;

        /// public static final [MONTH_AUGUST](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_AUGUST)
        pub const MONTH_AUGUST : i32 = 7;

        /// public static final [MONTH_DECEMBER](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_DECEMBER)
        pub const MONTH_DECEMBER : i32 = 11;

        /// public static final [MONTH_FEBRUARY](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_FEBRUARY)
        pub const MONTH_FEBRUARY : i32 = 1;

        /// public static final [MONTH_JANUARY](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_JANUARY)
        pub const MONTH_JANUARY : i32 = 0;

        /// public static final [MONTH_JULY](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_JULY)
        pub const MONTH_JULY : i32 = 6;

        /// public static final [MONTH_JUNE](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_JUNE)
        pub const MONTH_JUNE : i32 = 5;

        /// public static final [MONTH_MARCH](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_MARCH)
        pub const MONTH_MARCH : i32 = 2;

        /// public static final [MONTH_MAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_MAY)
        pub const MONTH_MAY : i32 = 4;

        /// public static final [MONTH_NOVEMBER](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_NOVEMBER)
        pub const MONTH_NOVEMBER : i32 = 10;

        /// public static final [MONTH_OCTOBER](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_OCTOBER)
        pub const MONTH_OCTOBER : i32 = 9;

        /// public static final [MONTH_SEPTEMBER](https://developer.android.com/reference/android/text/style/TtsSpan.html#MONTH_SEPTEMBER)
        pub const MONTH_SEPTEMBER : i32 = 8;

        /// public static final [MULTIPLICITY_DUAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#MULTIPLICITY_DUAL)
        pub const MULTIPLICITY_DUAL : &'static str = "android.dual";

        /// public static final [MULTIPLICITY_PLURAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#MULTIPLICITY_PLURAL)
        pub const MULTIPLICITY_PLURAL : &'static str = "android.plural";

        /// public static final [MULTIPLICITY_SINGLE](https://developer.android.com/reference/android/text/style/TtsSpan.html#MULTIPLICITY_SINGLE)
        pub const MULTIPLICITY_SINGLE : &'static str = "android.single";

        /// public static final [TYPE_CARDINAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_CARDINAL)
        pub const TYPE_CARDINAL : &'static str = "android.type.cardinal";

        /// public static final [TYPE_DATE](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_DATE)
        pub const TYPE_DATE : &'static str = "android.type.date";

        /// public static final [TYPE_DECIMAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_DECIMAL)
        pub const TYPE_DECIMAL : &'static str = "android.type.decimal";

        /// public static final [TYPE_DIGITS](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_DIGITS)
        pub const TYPE_DIGITS : &'static str = "android.type.digits";

        /// public static final [TYPE_ELECTRONIC](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_ELECTRONIC)
        pub const TYPE_ELECTRONIC : &'static str = "android.type.electronic";

        /// public static final [TYPE_FRACTION](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_FRACTION)
        pub const TYPE_FRACTION : &'static str = "android.type.fraction";

        /// public static final [TYPE_MEASURE](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_MEASURE)
        pub const TYPE_MEASURE : &'static str = "android.type.measure";

        /// public static final [TYPE_MONEY](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_MONEY)
        pub const TYPE_MONEY : &'static str = "android.type.money";

        /// public static final [TYPE_ORDINAL](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_ORDINAL)
        pub const TYPE_ORDINAL : &'static str = "android.type.ordinal";

        /// public static final [TYPE_TELEPHONE](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_TELEPHONE)
        pub const TYPE_TELEPHONE : &'static str = "android.type.telephone";

        /// public static final [TYPE_TEXT](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_TEXT)
        pub const TYPE_TEXT : &'static str = "android.type.text";

        /// public static final [TYPE_TIME](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_TIME)
        pub const TYPE_TIME : &'static str = "android.type.time";

        /// public static final [TYPE_VERBATIM](https://developer.android.com/reference/android/text/style/TtsSpan.html#TYPE_VERBATIM)
        pub const TYPE_VERBATIM : &'static str = "android.type.verbatim";

        /// public static final [WEEKDAY_FRIDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_FRIDAY)
        pub const WEEKDAY_FRIDAY : i32 = 6;

        /// public static final [WEEKDAY_MONDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_MONDAY)
        pub const WEEKDAY_MONDAY : i32 = 2;

        /// public static final [WEEKDAY_SATURDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_SATURDAY)
        pub const WEEKDAY_SATURDAY : i32 = 7;

        /// public static final [WEEKDAY_SUNDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_SUNDAY)
        pub const WEEKDAY_SUNDAY : i32 = 1;

        /// public static final [WEEKDAY_THURSDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_THURSDAY)
        pub const WEEKDAY_THURSDAY : i32 = 5;

        /// public static final [WEEKDAY_TUESDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_TUESDAY)
        pub const WEEKDAY_TUESDAY : i32 = 3;

        /// public static final [WEEKDAY_WEDNESDAY](https://developer.android.com/reference/android/text/style/TtsSpan.html#WEEKDAY_WEDNESDAY)
        pub const WEEKDAY_WEDNESDAY : i32 = 4;
    }
}