-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMeasureFormat.xml
More file actions
1024 lines (1014 loc) · 75.9 KB
/
Copy pathMeasureFormat.xml
File metadata and controls
1024 lines (1014 loc) · 75.9 KB
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="MeasureFormat" FullName="Android.Icu.Text.MeasureFormat">
<TypeSignature Language="C#" Value="public class MeasureFormat : Android.Icu.Text.UFormat" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit MeasureFormat extends Android.Icu.Text.UFormat" />
<TypeSignature Language="DocId" Value="T:Android.Icu.Text.MeasureFormat" />
<TypeSignature Language="F#" Value="type MeasureFormat = class
 inherit UFormat" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.Icu.Text.UFormat</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/icu/text/MeasureFormat", ApiSince=24, DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/icu/text/MeasureFormat", ApiSince=24, DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(2)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>A formatter for Measure objects.</summary>
<remarks>
<para>A formatter for Measure objects.</para>
<para><strong>IMPORTANT:</strong> New users are strongly encouraged to see if
<c>NumberFormatter</c> fits their use case. Although not deprecated, this
class, MeasureFormat, is provided for backwards compatibility only, and has
much more limited capabilities.
<hr></para>
<para>To format a Measure object, first create a formatter object using a MeasureFormat factory method. Then
use that object's format or formatMeasures methods.
Here is sample code:</para>
<code lang="text/java">MeasureFormat fmtFr = MeasureFormat.getInstance(ULocale.FRENCH, FormatWidth.SHORT);
Measure measure = new Measure(23, MeasureUnit.CELSIUS);
// Output: 23 °C
System.out.println(fmtFr.format(measure));
Measure measureF = new Measure(70, MeasureUnit.FAHRENHEIT);
// Output: 70 °F
System.out.println(fmtFr.format(measureF));
MeasureFormat fmtFrFull = MeasureFormat.getInstance(ULocale.FRENCH, FormatWidth.WIDE);
// Output: 70 pieds et 5,3 pouces
System.out.println(fmtFrFull.formatMeasures(new Measure(70, MeasureUnit.FOOT),
new Measure(5.3, MeasureUnit.INCH)));
// Output: 1 pied et 1 pouce
System.out.println(
fmtFrFull.formatMeasures(new Measure(1, MeasureUnit.FOOT), new Measure(1, MeasureUnit.INCH)));
MeasureFormat fmtFrNarrow = MeasureFormat.getInstance(ULocale.FRENCH, FormatWidth.NARROW);
// Output: 1′ 1″
System.out.println(fmtFrNarrow.formatMeasures(new Measure(1, MeasureUnit.FOOT),
new Measure(1, MeasureUnit.INCH)));
MeasureFormat fmtEn = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE);
// Output: 1 inch, 2 feet
fmtEn.formatMeasures(new Measure(1, MeasureUnit.INCH), new Measure(2, MeasureUnit.FOOT));
</code>
<para>This class does not do conversions from one unit to another. It simply formats whatever units it is
given</para>
<para>This class is immutable and thread-safe so long as its deprecated subclass, TimeUnitFormat, is never
used. TimeUnitFormat is not thread-safe, and is mutable. Although this class has existing subclasses,
this class does not support new sub-classes.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected MeasureFormat (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Icu.Text.MeasureFormat : nativeint * Android.Runtime.JniHandleOwnership -> Android.Icu.Text.MeasureFormat" Usage="new Android.Icu.Text.MeasureFormat (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">To be added.</param>
<param name="transfer">To be added.</param>
<summary>To be added.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="CurrencyFormat">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? CurrencyFormat { get; }" />
<MemberSignature Language="ILAsm" Value=".property class Android.Icu.Text.MeasureFormat CurrencyFormat" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.CurrencyFormat" />
<MemberSignature Language="F#" Value="static member CurrencyFormat : Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.CurrencyFormat" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getCurrencyFormat", "()Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getCurrencyFormat", "()Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Docs>
<summary>Return a formatter for CurrencyAmount objects in the default <c>FORMAT</c> locale.</summary>
<value>a formatter object</value>
<remarks>
<para>Return a formatter for CurrencyAmount objects in the default <c>FORMAT</c> locale.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getCurrencyFormat()" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getCurrencyFormat()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public override sealed bool Equals (Java.Lang.Object? other);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(class Java.Lang.Object other) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.Equals(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="override this.Equals : Java.Lang.Object -> bool" Usage="measureFormat.Equals other" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("equals", "(Ljava/lang/Object;)Z", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("equals", "(Ljava/lang/Object;)Z", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="other" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="other">the reference object with which to compare.</param>
<summary>Two MeasureFormats, a and b, are equal if and only if they have the same formatWidth, locale, and
equal number formats.</summary>
<returns>true if this object is the same as the obj argument; false otherwise.</returns>
<remarks>
<para>Two MeasureFormats, a and b, are equal if and only if they have the same formatWidth, locale, and
equal number formats.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#equals(java.lang.Object)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.equals(java.lang.Object)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Format">
<MemberSignature Language="C#" Value="public override Java.Lang.StringBuffer? Format (Java.Lang.Object? obj, Java.Lang.StringBuffer? toAppendTo, Java.Text.FieldPosition? fpos);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class Java.Lang.StringBuffer Format(class Java.Lang.Object obj, class Java.Lang.StringBuffer toAppendTo, class Java.Text.FieldPosition fpos) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.Format(Java.Lang.Object,Java.Lang.StringBuffer,Java.Text.FieldPosition)" />
<MemberSignature Language="F#" Value="override this.Format : Java.Lang.Object * Java.Lang.StringBuffer * Java.Text.FieldPosition -> Java.Lang.StringBuffer" Usage="measureFormat.Format (obj, toAppendTo, fpos)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("format", "(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;", "GetFormat_Ljava_lang_Object_Ljava_lang_StringBuffer_Ljava_text_FieldPosition_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("format", "(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;", "GetFormat_Ljava_lang_Object_Ljava_lang_StringBuffer_Ljava_text_FieldPosition_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.StringBuffer</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="Java.Lang.Object" />
<Parameter Name="toAppendTo" Type="Java.Lang.StringBuffer" />
<Parameter Name="fpos" Type="Java.Text.FieldPosition" />
</Parameters>
<Docs>
<param name="obj">must be a Collection&lt;? extends Measure&gt;, Measure[], or Measure object.</param>
<param name="toAppendTo">Formatted string appended here.</param>
<param name="fpos">Identifies a field in the formatted text.</param>
<summary>Able to format Collection&lt;? extends Measure&gt;, Measure[], and Measure by delegating to
formatMeasures.</summary>
<returns>the string buffer passed in as toAppendTo, with formatted text appended</returns>
<remarks>
<para>Able to format Collection&lt;? extends Measure&gt;, Measure[], and Measure by delegating to
formatMeasures. If the pos argument identifies a NumberFormat field, then its indices are set to
the beginning and end of the first such field encountered. MeasureFormat itself does not supply
any fields.
Calling a <c>formatMeasures</c> method is preferred over calling this method as they give
better performance.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#format(java.lang.Object,%20java.lang.StringBuffer,%20java.text.FieldPosition)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.format(java.lang.Object, java.lang.StringBuffer, java.text.FieldPosition)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="FormatMeasurePerUnit">
<MemberSignature Language="C#" Value="public virtual Java.Lang.StringBuilder? FormatMeasurePerUnit (Android.Icu.Util.Measure? measure, Android.Icu.Util.MeasureUnit? perUnit, Java.Lang.StringBuilder? appendTo, Java.Text.FieldPosition? pos);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.StringBuilder FormatMeasurePerUnit(class Android.Icu.Util.Measure measure, class Android.Icu.Util.MeasureUnit perUnit, class Java.Lang.StringBuilder appendTo, class Java.Text.FieldPosition pos) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.FormatMeasurePerUnit(Android.Icu.Util.Measure,Android.Icu.Util.MeasureUnit,Java.Lang.StringBuilder,Java.Text.FieldPosition)" />
<MemberSignature Language="F#" Value="abstract member FormatMeasurePerUnit : Android.Icu.Util.Measure * Android.Icu.Util.MeasureUnit * Java.Lang.StringBuilder * Java.Text.FieldPosition -> Java.Lang.StringBuilder
override this.FormatMeasurePerUnit : Android.Icu.Util.Measure * Android.Icu.Util.MeasureUnit * Java.Lang.StringBuilder * Java.Text.FieldPosition -> Java.Lang.StringBuilder" Usage="measureFormat.FormatMeasurePerUnit (measure, perUnit, appendTo, pos)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("formatMeasurePerUnit", "(Landroid/icu/util/Measure;Landroid/icu/util/MeasureUnit;Ljava/lang/StringBuilder;Ljava/text/FieldPosition;)Ljava/lang/StringBuilder;", "GetFormatMeasurePerUnit_Landroid_icu_util_Measure_Landroid_icu_util_MeasureUnit_Ljava_lang_StringBuilder_Ljava_text_FieldPosition_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("formatMeasurePerUnit", "(Landroid/icu/util/Measure;Landroid/icu/util/MeasureUnit;Ljava/lang/StringBuilder;Ljava/text/FieldPosition;)Ljava/lang/StringBuilder;", "GetFormatMeasurePerUnit_Landroid_icu_util_Measure_Landroid_icu_util_MeasureUnit_Ljava_lang_StringBuilder_Ljava_text_FieldPosition_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.StringBuilder</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="measure" Type="Android.Icu.Util.Measure" />
<Parameter Name="perUnit" Type="Android.Icu.Util.MeasureUnit" />
<Parameter Name="appendTo" Type="Java.Lang.StringBuilder" />
<Parameter Name="pos" Type="Java.Text.FieldPosition" />
</Parameters>
<Docs>
<param name="measure">the measure object. In above example, 3.5 meters.</param>
<param name="perUnit">the per unit. In above example, it is MeasureUnit.SECOND</param>
<param name="appendTo">formatted string appended here.</param>
<param name="pos">The field position.</param>
<summary>Formats a single measure per unit.</summary>
<returns>appendTo.</returns>
<remarks>
<para>Formats a single measure per unit.</para>
<para>An example of such a formatted string is "3.5 meters per second."</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#formatMeasurePerUnit(android.icu.util.Measure,%20android.icu.util.MeasureUnit,%20java.lang.StringBuilder,%20java.text.FieldPosition)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.formatMeasurePerUnit(android.icu.util.Measure, android.icu.util.MeasureUnit, java.lang.StringBuilder, java.text.FieldPosition)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="FormatMeasures">
<MemberSignature Language="C#" Value="public string? FormatMeasures (params Android.Icu.Util.Measure[]? measures);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string FormatMeasures(class Android.Icu.Util.Measure[] measures) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.FormatMeasures(Android.Icu.Util.Measure[])" />
<MemberSignature Language="F#" Value="member this.FormatMeasures : Android.Icu.Util.Measure[] -> string" Usage="measureFormat.FormatMeasures measures" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("formatMeasures", "([Landroid/icu/util/Measure;)Ljava/lang/String;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("formatMeasures", "([Landroid/icu/util/Measure;)Ljava/lang/String;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="measures" Type="Android.Icu.Util.Measure[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="measures">a sequence of one or more measures.</param>
<summary>Format a sequence of measures.</summary>
<returns>the formatted string.</returns>
<remarks>
<para>Format a sequence of measures. Uses the ListFormatter unit lists. So, for example, one could format “3 feet, 2 inches”. Zero values are formatted (eg, “3 feet, 0 inches”). It is the caller’s responsibility to have the appropriate values in appropriate order, and using the appropriate Number values. Typically the units should be in descending order, with all but the last Measure having integer values (eg, not “3.2 feet, 2 inches”).</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#formatMeasures(android.icu.util.Measure[])" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.formatMeasures</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="FormatMeasures">
<MemberSignature Language="C#" Value="public virtual Java.Lang.StringBuilder? FormatMeasures (Java.Lang.StringBuilder? appendTo, Java.Text.FieldPosition? fpos, params Android.Icu.Util.Measure[]? measures);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.StringBuilder FormatMeasures(class Java.Lang.StringBuilder appendTo, class Java.Text.FieldPosition fpos, class Android.Icu.Util.Measure[] measures) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.FormatMeasures(Java.Lang.StringBuilder,Java.Text.FieldPosition,Android.Icu.Util.Measure[])" />
<MemberSignature Language="F#" Value="abstract member FormatMeasures : Java.Lang.StringBuilder * Java.Text.FieldPosition * Android.Icu.Util.Measure[] -> Java.Lang.StringBuilder
override this.FormatMeasures : Java.Lang.StringBuilder * Java.Text.FieldPosition * Android.Icu.Util.Measure[] -> Java.Lang.StringBuilder" Usage="measureFormat.FormatMeasures (appendTo, fpos, measures)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("formatMeasures", "(Ljava/lang/StringBuilder;Ljava/text/FieldPosition;[Landroid/icu/util/Measure;)Ljava/lang/StringBuilder;", "GetFormatMeasures_Ljava_lang_StringBuilder_Ljava_text_FieldPosition_arrayLandroid_icu_util_Measure_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("formatMeasures", "(Ljava/lang/StringBuilder;Ljava/text/FieldPosition;[Landroid/icu/util/Measure;)Ljava/lang/StringBuilder;", "GetFormatMeasures_Ljava_lang_StringBuilder_Ljava_text_FieldPosition_arrayLandroid_icu_util_Measure_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.StringBuilder</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="appendTo" Type="Java.Lang.StringBuilder" />
<Parameter Name="fpos" Type="Java.Text.FieldPosition" />
<Parameter Name="measures" Type="Android.Icu.Util.Measure[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="appendTo">the formatted string appended here.</param>
<param name="fpos">Identifies a field in the formatted text.</param>
<param name="measures">the measures to format.</param>
<summary>Formats a sequence of measures.</summary>
<returns>appendTo.</returns>
<remarks>
<para>Formats a sequence of measures. If the fieldPosition argument identifies a NumberFormat field, then its indices are set to the beginning and end of the first such field encountered. MeasureFormat itself does not supply any fields.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#formatMeasures(java.lang.StringBuilder,%20java.text.FieldPosition,%20android.icu.util.Measure[])" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.formatMeasures</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetCurrencyFormat">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetCurrencyFormat (Android.Icu.Util.ULocale? locale);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetCurrencyFormat(class Android.Icu.Util.ULocale locale) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetCurrencyFormat(Android.Icu.Util.ULocale)" />
<MemberSignature Language="F#" Value="static member GetCurrencyFormat : Android.Icu.Util.ULocale -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetCurrencyFormat locale" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getCurrencyFormat", "(Landroid/icu/util/ULocale;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getCurrencyFormat", "(Landroid/icu/util/ULocale;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Android.Icu.Util.ULocale" />
</Parameters>
<Docs>
<param name="locale">desired locale</param>
<summary>Return a formatter for CurrencyAmount objects in the given locale.</summary>
<returns>a formatter object</returns>
<remarks>
<para>Return a formatter for CurrencyAmount objects in the given locale.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getCurrencyFormat(android.icu.util.ULocale)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getCurrencyFormat(android.icu.util.ULocale)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetCurrencyFormat">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetCurrencyFormat (Java.Util.Locale? locale);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetCurrencyFormat(class Java.Util.Locale locale) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetCurrencyFormat(Java.Util.Locale)" />
<MemberSignature Language="F#" Value="static member GetCurrencyFormat : Java.Util.Locale -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetCurrencyFormat locale" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getCurrencyFormat", "(Ljava/util/Locale;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getCurrencyFormat", "(Ljava/util/Locale;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Java.Util.Locale" />
</Parameters>
<Docs>
<param name="locale">desired <c>java.util.Locale</c></param>
<summary>Return a formatter for CurrencyAmount objects in the given <c>java.util.Locale</c>.</summary>
<returns>a formatter object</returns>
<remarks>
<para>Return a formatter for CurrencyAmount objects in the given <c>java.util.Locale</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getCurrencyFormat(java.util.Locale)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getCurrencyFormat(java.util.Locale)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override sealed int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetHashCode" />
<MemberSignature Language="F#" Value="override this.GetHashCode : unit -> int" Usage="measureFormat.GetHashCode " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("hashCode", "()I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("hashCode", "()I", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns a hash code value for the object.</summary>
<returns>a hash code value for this object.</returns>
<remarks>
<para>Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by HashMap. The general contract of hashCode is: Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. If two objects are equal according to the equals method, then calling the hashCode method on each of the two objects must produce the same integer result. It is not required that if two objects are unequal according to the equals method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#hashCode()" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.hashCode()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetInstance">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetInstance (Android.Icu.Util.ULocale? locale, Android.Icu.Text.MeasureFormat.FormatWidth? formatWidth);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetInstance(class Android.Icu.Util.ULocale locale, class Android.Icu.Text.MeasureFormat/FormatWidth formatWidth) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetInstance(Android.Icu.Util.ULocale,Android.Icu.Text.MeasureFormat.FormatWidth)" />
<MemberSignature Language="F#" Value="static member GetInstance : Android.Icu.Util.ULocale * Android.Icu.Text.MeasureFormat.FormatWidth -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetInstance (locale, formatWidth)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getInstance", "(Landroid/icu/util/ULocale;Landroid/icu/text/MeasureFormat$FormatWidth;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getInstance", "(Landroid/icu/util/ULocale;Landroid/icu/text/MeasureFormat$FormatWidth;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Android.Icu.Util.ULocale" />
<Parameter Name="formatWidth" Type="Android.Icu.Text.MeasureFormat+FormatWidth" />
</Parameters>
<Docs>
<param name="locale">the locale.</param>
<param name="formatWidth">hints how long formatted strings should be.</param>
<summary>Create a format from the locale, formatWidth, and format.</summary>
<returns>The new MeasureFormat object.</returns>
<remarks>
<para>Create a format from the locale, formatWidth, and format.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getInstance(android.icu.util.ULocale,%20android.icu.text.MeasureFormat.FormatWidth)" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.getInstance</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetInstance">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetInstance (Java.Util.Locale? locale, Android.Icu.Text.MeasureFormat.FormatWidth? formatWidth);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetInstance(class Java.Util.Locale locale, class Android.Icu.Text.MeasureFormat/FormatWidth formatWidth) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetInstance(Java.Util.Locale,Android.Icu.Text.MeasureFormat.FormatWidth)" />
<MemberSignature Language="F#" Value="static member GetInstance : Java.Util.Locale * Android.Icu.Text.MeasureFormat.FormatWidth -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetInstance (locale, formatWidth)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getInstance", "(Ljava/util/Locale;Landroid/icu/text/MeasureFormat$FormatWidth;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getInstance", "(Ljava/util/Locale;Landroid/icu/text/MeasureFormat$FormatWidth;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Java.Util.Locale" />
<Parameter Name="formatWidth" Type="Android.Icu.Text.MeasureFormat+FormatWidth" />
</Parameters>
<Docs>
<param name="locale">the Locale.</param>
<param name="formatWidth">hints how long formatted strings should be.</param>
<summary>Create a format from the Locale and formatWidth.</summary>
<returns>The new MeasureFormat object.</returns>
<remarks>
<para>Create a format from the Locale and formatWidth.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getInstance(java.util.Locale,%20android.icu.text.MeasureFormat.FormatWidth)" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.getInstance</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetInstance">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetInstance (Android.Icu.Util.ULocale? locale, Android.Icu.Text.MeasureFormat.FormatWidth? formatWidth, Android.Icu.Text.NumberFormat? format);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetInstance(class Android.Icu.Util.ULocale locale, class Android.Icu.Text.MeasureFormat/FormatWidth formatWidth, class Android.Icu.Text.NumberFormat format) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetInstance(Android.Icu.Util.ULocale,Android.Icu.Text.MeasureFormat.FormatWidth,Android.Icu.Text.NumberFormat)" />
<MemberSignature Language="F#" Value="static member GetInstance : Android.Icu.Util.ULocale * Android.Icu.Text.MeasureFormat.FormatWidth * Android.Icu.Text.NumberFormat -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetInstance (locale, formatWidth, format)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getInstance", "(Landroid/icu/util/ULocale;Landroid/icu/text/MeasureFormat$FormatWidth;Landroid/icu/text/NumberFormat;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getInstance", "(Landroid/icu/util/ULocale;Landroid/icu/text/MeasureFormat$FormatWidth;Landroid/icu/text/NumberFormat;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Android.Icu.Util.ULocale" />
<Parameter Name="formatWidth" Type="Android.Icu.Text.MeasureFormat+FormatWidth" />
<Parameter Name="format" Type="Android.Icu.Text.NumberFormat" />
</Parameters>
<Docs>
<param name="locale">the locale.</param>
<param name="formatWidth">hints how long formatted strings should be.</param>
<param name="format">This is defensively copied.</param>
<summary>Create a format from the locale, formatWidth, and format.</summary>
<returns>The new MeasureFormat object.</returns>
<remarks>
<para>Create a format from the locale, formatWidth, and format.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getInstance(android.icu.util.ULocale,%20android.icu.text.MeasureFormat.FormatWidth,%20android.icu.text.NumberFormat)" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.getInstance</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetInstance">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.MeasureFormat? GetInstance (Java.Util.Locale? locale, Android.Icu.Text.MeasureFormat.FormatWidth? formatWidth, Android.Icu.Text.NumberFormat? format);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Icu.Text.MeasureFormat GetInstance(class Java.Util.Locale locale, class Android.Icu.Text.MeasureFormat/FormatWidth formatWidth, class Android.Icu.Text.NumberFormat format) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetInstance(Java.Util.Locale,Android.Icu.Text.MeasureFormat.FormatWidth,Android.Icu.Text.NumberFormat)" />
<MemberSignature Language="F#" Value="static member GetInstance : Java.Util.Locale * Android.Icu.Text.MeasureFormat.FormatWidth * Android.Icu.Text.NumberFormat -> Android.Icu.Text.MeasureFormat" Usage="Android.Icu.Text.MeasureFormat.GetInstance (locale, formatWidth, format)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getInstance", "(Ljava/util/Locale;Landroid/icu/text/MeasureFormat$FormatWidth;Landroid/icu/text/NumberFormat;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getInstance", "(Ljava/util/Locale;Landroid/icu/text/MeasureFormat$FormatWidth;Landroid/icu/text/NumberFormat;)Landroid/icu/text/MeasureFormat;", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.MeasureFormat</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locale" Type="Java.Util.Locale" />
<Parameter Name="formatWidth" Type="Android.Icu.Text.MeasureFormat+FormatWidth" />
<Parameter Name="format" Type="Android.Icu.Text.NumberFormat" />
</Parameters>
<Docs>
<param name="locale">the Locale.</param>
<param name="formatWidth">hints how long formatted strings should be.</param>
<param name="format">This is defensively copied.</param>
<summary>Create a format from the Locale, formatWidth, and format.</summary>
<returns>The new MeasureFormat object.</returns>
<remarks>
<para>Create a format from the Locale, formatWidth, and format.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getInstance(java.util.Locale,%20android.icu.text.MeasureFormat.FormatWidth,%20android.icu.text.NumberFormat)" title="Reference documentation">Android reference for <code>android.icu.text.MeasureFormat.getInstance</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetUnitDisplayName">
<MemberSignature Language="C#" Value="public virtual string? GetUnitDisplayName (Android.Icu.Util.MeasureUnit? unit);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string GetUnitDisplayName(class Android.Icu.Util.MeasureUnit unit) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.GetUnitDisplayName(Android.Icu.Util.MeasureUnit)" />
<MemberSignature Language="F#" Value="abstract member GetUnitDisplayName : Android.Icu.Util.MeasureUnit -> string
override this.GetUnitDisplayName : Android.Icu.Util.MeasureUnit -> string" Usage="measureFormat.GetUnitDisplayName unit" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getUnitDisplayName", "(Landroid/icu/util/MeasureUnit;)Ljava/lang/String;", "GetGetUnitDisplayName_Landroid_icu_util_MeasureUnit_Handler", ApiSince=28)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getUnitDisplayName", "(Landroid/icu/util/MeasureUnit;)Ljava/lang/String;", "GetGetUnitDisplayName_Landroid_icu_util_MeasureUnit_Handler", ApiSince=28)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="unit" Type="Android.Icu.Util.MeasureUnit" />
</Parameters>
<Docs>
<param name="unit">The unit for which to get a display name.</param>
<summary>Gets the display name of the specified <c>MeasureUnit</c> corresponding to the current locale and
format width.</summary>
<returns>The display name in the locale and width specified in <c>MeasureFormat#getInstance</c>,
or null if there is no display name available for the specified unit.</returns>
<remarks>
<para>Gets the display name of the specified <c>MeasureUnit</c> corresponding to the current locale and
format width.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getUnitDisplayName(android.icu.util.MeasureUnit)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getUnitDisplayName(android.icu.util.MeasureUnit)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Icu.Text.MeasureFormat.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Locale">
<MemberSignature Language="C#" Value="public Android.Icu.Util.ULocale? Locale { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Util.ULocale Locale" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.Locale" />
<MemberSignature Language="F#" Value="member this.Locale : Android.Icu.Util.ULocale" Usage="Android.Icu.Text.MeasureFormat.Locale" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getLocale", "()Landroid/icu/util/ULocale;", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getLocale", "()Landroid/icu/util/ULocale;", "", ApiSince=24)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Util.ULocale</ReturnType>
</ReturnValue>
<Docs>
<summary>Get the locale of this instance.</summary>
<value>To be added.</value>
<remarks>
<para>Get the locale of this instance.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getLocale()" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getLocale()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="NumberFormat">
<MemberSignature Language="C#" Value="public virtual Android.Icu.Text.NumberFormat? NumberFormat { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Text.NumberFormat NumberFormat" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.NumberFormat" />
<MemberSignature Language="F#" Value="member this.NumberFormat : Android.Icu.Text.NumberFormat" Usage="Android.Icu.Text.MeasureFormat.NumberFormat" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getNumberFormat", "()Landroid/icu/text/NumberFormat;", "GetGetNumberFormatHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getNumberFormat", "()Landroid/icu/text/NumberFormat;", "GetGetNumberFormatHandler", ApiSince=24)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.NumberFormat</ReturnType>
</ReturnValue>
<Docs>
<summary>Get a copy of the number format.</summary>
<value>To be added.</value>
<remarks>
<para>Get a copy of the number format.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#getNumberFormat()" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.getNumberFormat()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ParseObject">
<MemberSignature Language="C#" Value="public override Java.Lang.Object? ParseObject (string? source, Java.Text.ParsePosition? pos);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class Java.Lang.Object ParseObject(string source, class Java.Text.ParsePosition pos) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.MeasureFormat.ParseObject(System.String,Java.Text.ParsePosition)" />
<MemberSignature Language="F#" Value="override this.ParseObject : string * Java.Text.ParsePosition -> Java.Lang.Object" Usage="measureFormat.ParseObject (source, pos)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("parseObject", "(Ljava/lang/String;Ljava/text/ParsePosition;)Landroid/icu/util/Measure;", "GetParseObject_Ljava_lang_String_Ljava_text_ParsePosition_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("parseObject", "(Ljava/lang/String;Ljava/text/ParsePosition;)Landroid/icu/util/Measure;", "GetParseObject_Ljava_lang_String_Ljava_text_ParsePosition_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.String" />
<Parameter Name="pos" Type="Java.Text.ParsePosition" />
</Parameters>
<Docs>
<param name="source">A String, part of which should be parsed.</param>
<param name="pos">A ParsePosition object with index and error index information as described above.</param>
<summary>Parses text from a string to produce a <c>Measure</c>.</summary>
<returns>An Object parsed from the string. In case of error, returns null.</returns>
<remarks>
<para>Parses text from a string to produce a <c>Measure</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/MeasureFormat#parseObject(java.lang.String,%20java.text.ParsePosition)" title="Reference documentation">Java documentation for <code>android.icu.text.MeasureFormat.parseObject(java.lang.String, java.text.ParsePosition)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdClass">
<MemberSignature Language="C#" Value="protected override IntPtr ThresholdClass { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance native int ThresholdClass" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Icu.Text.MeasureFormat.ThresholdClass" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IntPtr</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdType">
<MemberSignature Language="C#" Value="protected override Type ThresholdType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ThresholdType" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Icu.Text.MeasureFormat.ThresholdType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Width">
<MemberSignature Language="C#" Value="public virtual Android.Icu.Text.MeasureFormat.FormatWidth? Width { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Text.MeasureFormat/FormatWidth Width" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.MeasureFormat.Width" />
<MemberSignature Language="F#" Value="member this.Width : Android.Icu.Text.MeasureFormat.FormatWidth" Usage="Android.Icu.Text.MeasureFormat.Width" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>