-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNormalizer.xml
More file actions
1035 lines (1025 loc) · 66.1 KB
/
Copy pathNormalizer.xml
File metadata and controls
1035 lines (1025 loc) · 66.1 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="Normalizer" FullName="Android.Icu.Text.Normalizer">
<TypeSignature Language="C#" Value="public sealed class Normalizer : Java.Lang.Object, IDisposable, Java.Lang.ICloneable" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit Normalizer extends Java.Lang.Object implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class Java.Lang.ICloneable, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Android.Icu.Text.Normalizer" />
<TypeSignature Language="F#" Value="type Normalizer = class
 inherit Object
 interface ICloneable
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Lang.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Lang.ICloneable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/icu/text/Normalizer", ApiSince=24, DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/icu/text/Normalizer", 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>Old Unicode normalization API.</summary>
<remarks>
<para>Old Unicode normalization API.</para>
<para>This API has been replaced by the <c>Normalizer2</c> class and is only available
for backward compatibility. This class simply delegates to the Normalizer2 class.
There are two exceptions: The new API does not provide a replacement for
<c>QuickCheckResult</c> and <c>compare()</c>.</para>
<para>
<c>normalize</c> transforms Unicode text into an equivalent composed or
decomposed form, allowing for easier sorting and searching of text.
<c>normalize</c> supports the standard normalization forms described in
Unicode Standard Annex #15 &mdash; Unicode Normalization Forms.</para>
<para>Characters with accents or other adornments can be encoded in
several different ways in Unicode. For example, take the character A-acute.
In Unicode, this can be encoded as a single character (the
"composed" form):</para>
<code lang="text/java">00C1 LATIN CAPITAL LETTER A WITH ACUTE
</code>
<para>or as two separate characters (the "decomposed" form):</para>
<code lang="text/java">0041 LATIN CAPITAL LETTER A
0301 COMBINING ACUTE ACCENT
</code>
<para>To a user of your program, however, both of these sequences should be
treated as the same "user-level" character "A with acute accent". When you
are searching or comparing text, you must ensure that these two sequences are
treated equivalently. In addition, you must handle characters with more than
one accent. Sometimes the order of a character's combining accents is
significant, while in other cases accent sequences in different orders are
really equivalent.</para>
<para>Similarly, the string "ffi" can be encoded as three separate letters:</para>
<code lang="text/java">0066 LATIN SMALL LETTER F
0066 LATIN SMALL LETTER F
0069 LATIN SMALL LETTER I
</code>
<para>or as the single character</para>
<code lang="text/java">FB03 LATIN SMALL LIGATURE FFI
</code>
<para>The ffi ligature is not a distinct semantic character, and strictly speaking
it shouldn't be in Unicode at all, but it was included for compatibility
with existing character sets that already provided it. The Unicode standard
identifies such characters by giving them "compatibility" decompositions
into the corresponding semantic characters. When sorting and searching, you
will often want to use these mappings.</para>
<para>
<c>normalize</c> helps solve these problems by transforming text into
the canonical composed and decomposed forms as shown in the first example
above. In addition, you can have it perform compatibility decompositions so
that you can treat compatibility characters the same as their equivalents.
Finally, <c>normalize</c> rearranges accents into the proper canonical
order, so that you do not have to worry about accent rearrangement on your
own.</para>
<para>Form FCD, "Fast C or D", is also designed for collation.
It allows to work on strings that are not necessarily normalized
with an algorithm (like in collation) that works under "canonical closure",
i.e., it treats precomposed characters and their decomposed equivalents the
same.</para>
<para>It is not a normalization form because it does not provide for uniqueness of
representation. Multiple strings may be canonically equivalent (their NFDs
are identical) and may all conform to FCD without being identical themselves.</para>
<para>The form is defined such that the "raw decomposition", the recursive
canonical decomposition of each character, results in a string that is
canonically ordered. This means that precomposed characters are allowed for
as long as their decompositions do not need canonical reordering.</para>
<para>Its advantage for a process like collation is that all NFD and most NFC texts
- and many unnormalized texts - already conform to FCD and do not need to be
normalized (NFD) for such a process. The FCD quick check will return YES for
most strings in practice.</para>
<para>normalize(FCD) may be implemented with NFD.</para>
<para>For more details on FCD see Unicode Technical Note #5 (Canonical Equivalence in Applications):
http://www.unicode.org/notes/tn5/#FCD</para>
<para>ICU collation performs either NFD or FCD normalization automatically if
normalization is turned on for the collator object. Beyond collation and
string search, normalized strings may be useful for string equivalence
comparisons, transliteration/transcription, unique representations, etc.</para>
<para>The W3C generally recommends to exchange texts in NFC.
Note also that most legacy character encodings use only precomposed forms and
often do not encode any combining marks by themselves. For conversion to such
character encodings the Unicode text needs to be normalized to NFC.
For more usage examples, see the Unicode Standard Annex.</para>
<para>Note: The Normalizer class also provides API for iterative normalization.
While the setIndex() and getIndex() refer to indices in the
underlying Unicode input text, the next() and previous() methods
iterate through characters in the normalized output.
This means that there is not necessarily a one-to-one correspondence
between characters returned by next() and previous() and the indices
passed to and returned from setIndex() and getIndex().
It is for this reason that Normalizer does not implement the CharacterIterator interface.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer</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="Clone">
<MemberSignature Language="C#" Value="public Java.Lang.Object? Clone ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class Java.Lang.Object Clone() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Clone" />
<MemberSignature Language="F#" Value="override this.Clone : unit -> Java.Lang.Object" Usage="normalizer.Clone " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("clone", "()Ljava/lang/Object;", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("clone", "()Ljava/lang/Object;", "", ApiSince=29)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Clones this <c>Normalizer</c> object.</summary>
<returns>a clone of this instance.</returns>
<remarks>
<para>Clones this <c>Normalizer</c> object. All properties of this
object are duplicated in the new object, including the cloning of any
<c>CharacterIterator</c> that was passed in to the constructor
or to <c>#setText(CharacterIterator) setText</c>.
However, the text storage underlying
the <c>CharacterIterator</c> is not duplicated unless the
iterator's <c>clone</c> method does so.</para>
<para>This member is deprecated. ICU 56 Use <c>Normalizer2</c> instead.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#clone()" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.clone()</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="Compare">
<MemberSignature Language="C#" Value="public static int Compare (char[]? s1, char[]? s2, Android.Icu.Text.NormalizerCompareOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Compare(char[] s1, char[] s2, valuetype Android.Icu.Text.NormalizerCompareOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Compare(System.Char[],System.Char[],Android.Icu.Text.NormalizerCompareOptions)" />
<MemberSignature Language="F#" Value="static member Compare : char[] * char[] * Android.Icu.Text.NormalizerCompareOptions -> int" Usage="Android.Icu.Text.Normalizer.Compare (s1, s2, options)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compare", "([C[CI)I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compare", "([C[CI)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>
<Parameter Name="s1" Type="System.Char[]" />
<Parameter Name="s2" Type="System.Char[]" />
<Parameter Name="options" Type="Android.Icu.Text.NormalizerCompareOptions">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="s1">First source string.</param>
<param name="s2">Second source string.</param>
<param name="options">A bit set of options:
- FOLD_CASE_DEFAULT or 0 is used for default options:
Case-sensitive comparison in code unit order, and the input strings
are quick-checked for FCD.
- INPUT_IS_FCD
Set if the caller knows that both s1 and s2 fulfill the FCD
conditions. If not set, the function will quickCheck for FCD
and normalize if necessary.
- COMPARE_CODE_POINT_ORDER
Set to choose code point order instead of code unit order
- COMPARE_IGNORE_CASE
Set to compare strings case-insensitively using case folding,
instead of case-sensitively.
If set, then the following case folding options are used.</param>
<summary>Compare two strings for canonical equivalence.</summary>
<returns>&lt;0 or 0 or &gt;0 as usual for string comparisons</returns>
<remarks>
<para>Compare two strings for canonical equivalence.
Further options include case-insensitive comparison and
code point order (as opposed to code unit order).
Convenience method.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#compare(char[],%20char[],%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.compare(char[], char[], int)</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="Compare">
<MemberSignature Language="C#" Value="public static int Compare (int char32a, int char32b, Android.Icu.Text.NormalizerCompareOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Compare(int32 char32a, int32 char32b, valuetype Android.Icu.Text.NormalizerCompareOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Compare(System.Int32,System.Int32,Android.Icu.Text.NormalizerCompareOptions)" />
<MemberSignature Language="F#" Value="static member Compare : int * int * Android.Icu.Text.NormalizerCompareOptions -> int" Usage="Android.Icu.Text.Normalizer.Compare (char32a, char32b, options)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compare", "(III)I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compare", "(III)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>
<Parameter Name="char32a" Type="System.Int32" />
<Parameter Name="char32b" Type="System.Int32" />
<Parameter Name="options" Type="Android.Icu.Text.NormalizerCompareOptions">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="char32a">the first code point to be checked against the</param>
<param name="char32b">the second code point</param>
<param name="options">A bit set of options</param>
<summary>Convenience method that can have faster implementation
by not allocating buffers.</summary>
<returns>To be added.</returns>
<remarks>
<para>Convenience method that can have faster implementation
by not allocating buffers.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#compare(int,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.compare(int, int, int)</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="Compare">
<MemberSignature Language="C#" Value="public static int Compare (int char32a, string? str2, Android.Icu.Text.NormalizerCompareOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Compare(int32 char32a, string str2, valuetype Android.Icu.Text.NormalizerCompareOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Compare(System.Int32,System.String,Android.Icu.Text.NormalizerCompareOptions)" />
<MemberSignature Language="F#" Value="static member Compare : int * string * Android.Icu.Text.NormalizerCompareOptions -> int" Usage="Android.Icu.Text.Normalizer.Compare (char32a, str2, options)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compare", "(ILjava/lang/String;I)I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compare", "(ILjava/lang/String;I)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>
<Parameter Name="char32a" Type="System.Int32" />
<Parameter Name="str2" Type="System.String" />
<Parameter Name="options" Type="Android.Icu.Text.NormalizerCompareOptions">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="char32a">the first code point to be checked against</param>
<param name="str2">the second string</param>
<param name="options">A bit set of options</param>
<summary>Convenience method that can have faster implementation
by not allocating buffers.</summary>
<returns>To be added.</returns>
<remarks>
<para>Convenience method that can have faster implementation
by not allocating buffers.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#compare(int,%20java.lang.String,%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.compare(int, java.lang.String, int)</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="Compare">
<MemberSignature Language="C#" Value="public static int Compare (string? s1, string? s2, Android.Icu.Text.NormalizerCompareOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Compare(string s1, string s2, valuetype Android.Icu.Text.NormalizerCompareOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Compare(System.String,System.String,Android.Icu.Text.NormalizerCompareOptions)" />
<MemberSignature Language="F#" Value="static member Compare : string * string * Android.Icu.Text.NormalizerCompareOptions -> int" Usage="Android.Icu.Text.Normalizer.Compare (s1, s2, options)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compare", "(Ljava/lang/String;Ljava/lang/String;I)I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compare", "(Ljava/lang/String;Ljava/lang/String;I)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>
<Parameter Name="s1" Type="System.String" />
<Parameter Name="s2" Type="System.String" />
<Parameter Name="options" Type="Android.Icu.Text.NormalizerCompareOptions">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="s1">First source string.</param>
<param name="s2">Second source string.</param>
<param name="options">A bit set of options:
- FOLD_CASE_DEFAULT or 0 is used for default options:
Case-sensitive comparison in code unit order, and the input strings
are quick-checked for FCD.
- INPUT_IS_FCD
Set if the caller knows that both s1 and s2 fulfill the FCD
conditions. If not set, the function will quickCheck for FCD
and normalize if necessary.
- COMPARE_CODE_POINT_ORDER
Set to choose code point order instead of code unit order
- COMPARE_IGNORE_CASE
Set to compare strings case-insensitively using case folding,
instead of case-sensitively.
If set, then the following case folding options are used.</param>
<summary>Compare two strings for canonical equivalence.</summary>
<returns>&lt;0 or 0 or &gt;0 as usual for string comparisons</returns>
<remarks>
<para>Compare two strings for canonical equivalence.
Further options include case-insensitive comparison and
code point order (as opposed to code unit order).</para>
<para>Canonical equivalence between two strings is defined as their normalized
forms (NFD or NFC) being identical.
This function compares strings incrementally instead of normalizing
(and optionally case-folding) both strings entirely,
improving performance significantly.</para>
<para>Bulk normalization is only necessary if the strings do not fulfill the
FCD conditions. Only in this case, and only if the strings are relatively
long, is memory allocated temporarily.
For FCD strings and short non-FCD strings there is no memory allocation.</para>
<para>Semantically, this is equivalent to
strcmp[CodePointOrder](foldCase(NFD(s1)), foldCase(NFD(s2)))
where code point order and foldCase are all optional.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#compare(java.lang.String,%20java.lang.String,%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.compare(java.lang.String, java.lang.String, int)</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="Compare">
<MemberSignature Language="C#" Value="public static int Compare (char[]? s1, int s1Start, int s1Limit, char[]? s2, int s2Start, int s2Limit, Android.Icu.Text.NormalizerCompareOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Compare(char[] s1, int32 s1Start, int32 s1Limit, char[] s2, int32 s2Start, int32 s2Limit, valuetype Android.Icu.Text.NormalizerCompareOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Compare(System.Char[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,Android.Icu.Text.NormalizerCompareOptions)" />
<MemberSignature Language="F#" Value="static member Compare : char[] * int * int * char[] * int * int * Android.Icu.Text.NormalizerCompareOptions -> int" Usage="Android.Icu.Text.Normalizer.Compare (s1, s1Start, s1Limit, s2, s2Start, s2Limit, options)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compare", "([CII[CIII)I", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compare", "([CII[CIII)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>
<Parameter Name="s1" Type="System.Char[]" />
<Parameter Name="s1Start" Type="System.Int32" />
<Parameter Name="s1Limit" Type="System.Int32" />
<Parameter Name="s2" Type="System.Char[]" />
<Parameter Name="s2Start" Type="System.Int32" />
<Parameter Name="s2Limit" Type="System.Int32" />
<Parameter Name="options" Type="Android.Icu.Text.NormalizerCompareOptions">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="s1">First source character array.</param>
<param name="s1Start">start index of source</param>
<param name="s1Limit">limit of the source</param>
<param name="s2">Second source character array.</param>
<param name="s2Start">start index of the source</param>
<param name="s2Limit">limit of the source</param>
<param name="options">A bit set of options:
- FOLD_CASE_DEFAULT or 0 is used for default options:
Case-sensitive comparison in code unit order, and the input strings
are quick-checked for FCD.
- INPUT_IS_FCD
Set if the caller knows that both s1 and s2 fulfill the FCD
conditions.If not set, the function will quickCheck for FCD
and normalize if necessary.
- COMPARE_CODE_POINT_ORDER
Set to choose code point order instead of code unit order
- COMPARE_IGNORE_CASE
Set to compare strings case-insensitively using case folding,
instead of case-sensitively.
If set, then the following case folding options are used.</param>
<summary>Compare two strings for canonical equivalence.</summary>
<returns>&lt;0 or 0 or &gt;0 as usual for string comparisons</returns>
<remarks>
<para>Compare two strings for canonical equivalence.
Further options include case-insensitive comparison and
code point order (as opposed to code unit order).</para>
<para>Canonical equivalence between two strings is defined as their normalized
forms (NFD or NFC) being identical.
This function compares strings incrementally instead of normalizing
(and optionally case-folding) both strings entirely,
improving performance significantly.</para>
<para>Bulk normalization is only necessary if the strings do not fulfill the
FCD conditions. Only in this case, and only if the strings are relatively
long, is memory allocated temporarily.
For FCD strings and short non-FCD strings there is no memory allocation.</para>
<para>Semantically, this is equivalent to
strcmp[CodePointOrder](foldCase(NFD(s1)), foldCase(NFD(s2)))
where code point order and foldCase are all optional.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#compare(char[],%20int,%20int,%20char[],%20int,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.compare(char[], int, int, char[], int, int, int)</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="CompareCodePointOrder">
<MemberSignature Language="C#" Value="public const Android.Icu.Text.NormalizerCompareOptions CompareCodePointOrder = 32768;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Icu.Text.NormalizerCompareOptions CompareCodePointOrder = (32768)" />
<MemberSignature Language="DocId" Value="F:Android.Icu.Text.Normalizer.CompareCodePointOrder" />
<MemberSignature Language="F#" Value="val mutable CompareCodePointOrder : Android.Icu.Text.NormalizerCompareOptions" Usage="Android.Icu.Text.Normalizer.CompareCodePointOrder" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("COMPARE_CODE_POINT_ORDER", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("COMPARE_CODE_POINT_ORDER", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)>]</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.NormalizerCompareOptions</ReturnType>
</ReturnValue>
<MemberValue>32768</MemberValue>
<Docs>
<summary>Option bit for compare:
Compare strings in code point order instead of code unit order.</summary>
<remarks>
<para>Option bit for compare:
Compare strings in code point order instead of code unit order.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#COMPARE_CODE_POINT_ORDER" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.COMPARE_CODE_POINT_ORDER</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="CompareIgnoreCase">
<MemberSignature Language="C#" Value="public const Android.Icu.Text.NormalizerCompareOptions CompareIgnoreCase = 65536;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Icu.Text.NormalizerCompareOptions CompareIgnoreCase = (65536)" />
<MemberSignature Language="DocId" Value="F:Android.Icu.Text.Normalizer.CompareIgnoreCase" />
<MemberSignature Language="F#" Value="val mutable CompareIgnoreCase : Android.Icu.Text.NormalizerCompareOptions" Usage="Android.Icu.Text.Normalizer.CompareIgnoreCase" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("COMPARE_IGNORE_CASE", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("COMPARE_IGNORE_CASE", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)>]</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.NormalizerCompareOptions</ReturnType>
</ReturnValue>
<MemberValue>65536</MemberValue>
<Docs>
<summary>Option bit for compare:
Perform case-insensitive comparison.</summary>
<remarks>
<para>Option bit for compare:
Perform case-insensitive comparison.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#COMPARE_IGNORE_CASE" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.COMPARE_IGNORE_CASE</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="FoldCaseDefault">
<MemberSignature Language="C#" Value="public const Android.Icu.Text.NormalizerCompareOptions FoldCaseDefault = 0;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Icu.Text.NormalizerCompareOptions FoldCaseDefault = (0)" />
<MemberSignature Language="DocId" Value="F:Android.Icu.Text.Normalizer.FoldCaseDefault" />
<MemberSignature Language="F#" Value="val mutable FoldCaseDefault : Android.Icu.Text.NormalizerCompareOptions" Usage="Android.Icu.Text.Normalizer.FoldCaseDefault" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("FOLD_CASE_DEFAULT", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("FOLD_CASE_DEFAULT", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)>]</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.NormalizerCompareOptions</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>Option bit for compare:
Case sensitively compare the strings</summary>
<remarks>
<para>Option bit for compare:
Case sensitively compare the strings</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#FOLD_CASE_DEFAULT" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.FOLD_CASE_DEFAULT</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="FoldCaseExcludeSpecialI">
<MemberSignature Language="C#" Value="public const Android.Icu.Text.NormalizerCompareOptions FoldCaseExcludeSpecialI = 1;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Icu.Text.NormalizerCompareOptions FoldCaseExcludeSpecialI = (1)" />
<MemberSignature Language="DocId" Value="F:Android.Icu.Text.Normalizer.FoldCaseExcludeSpecialI" />
<MemberSignature Language="F#" Value="val mutable FoldCaseExcludeSpecialI : Android.Icu.Text.NormalizerCompareOptions" Usage="Android.Icu.Text.Normalizer.FoldCaseExcludeSpecialI" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("FOLD_CASE_EXCLUDE_SPECIAL_I", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("FOLD_CASE_EXCLUDE_SPECIAL_I", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)>]</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.NormalizerCompareOptions</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>Option value for case folding:
Use the modified set of mappings provided in CaseFolding.</summary>
<remarks>
<para>Option value for case folding:
Use the modified set of mappings provided in CaseFolding.txt to handle dotted I
and dotless i appropriately for Turkic languages (tr, az).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#FOLD_CASE_EXCLUDE_SPECIAL_I" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.FOLD_CASE_EXCLUDE_SPECIAL_I</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="InputIsFcd">
<MemberSignature Language="C#" Value="public const Android.Icu.Text.NormalizerCompareOptions InputIsFcd = 131072;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Icu.Text.NormalizerCompareOptions InputIsFcd = (131072)" />
<MemberSignature Language="DocId" Value="F:Android.Icu.Text.Normalizer.InputIsFcd" />
<MemberSignature Language="F#" Value="val mutable InputIsFcd : Android.Icu.Text.NormalizerCompareOptions" Usage="Android.Icu.Text.Normalizer.InputIsFcd" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("INPUT_IS_FCD", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("INPUT_IS_FCD", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.NormalizerCompareOptions enum directly instead of this field.", true)>]</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.NormalizerCompareOptions</ReturnType>
</ReturnValue>
<MemberValue>131072</MemberValue>
<Docs>
<summary>Option bit for compare:
Both input strings are assumed to fulfill FCD conditions.</summary>
<remarks>
<para>Option bit for compare:
Both input strings are assumed to fulfill FCD conditions.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/Normalizer#INPUT_IS_FCD" title="Reference documentation">Java documentation for <code>android.icu.text.Normalizer.INPUT_IS_FCD</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="Java.Interop.IJavaPeerable.UnregisterFromRuntime">
<MemberSignature Language="C#" Value="void IJavaPeerable.UnregisterFromRuntime ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void Java.Interop.IJavaPeerable.UnregisterFromRuntime() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.Normalizer.Java#Interop#IJavaPeerable#UnregisterFromRuntime" />
<MemberSignature Language="F#" Value="abstract member Java.Interop.IJavaPeerable.UnregisterFromRuntime : unit -> unit
override this.Java.Interop.IJavaPeerable.UnregisterFromRuntime : unit -> unit" Usage="normalizer.Java.Interop.IJavaPeerable.UnregisterFromRuntime " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Interop.IJavaPeerable.UnregisterFromRuntime</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</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.Normalizer.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Icu.Text.Normalizer.JniPeerMembers" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Java.Interop.IJavaPeerable.JniPeerMembers</InterfaceMember>
</Implements>
<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="Maybe">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.Normalizer.QuickCheckResult? Maybe { get; }" />
<MemberSignature Language="ILAsm" Value=".property class Android.Icu.Text.Normalizer/QuickCheckResult Maybe" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.Normalizer.Maybe" />
<MemberSignature Language="F#" Value="static member Maybe : Android.Icu.Text.Normalizer.QuickCheckResult" Usage="Android.Icu.Text.Normalizer.Maybe" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("MAYBE", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("MAYBE", 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.Normalizer+QuickCheckResult</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="No">
<MemberSignature Language="C#" Value="public static Android.Icu.Text.Normalizer.QuickCheckResult? No { get; }" />
<MemberSignature Language="ILAsm" Value=".property class Android.Icu.Text.Normalizer/QuickCheckResult No" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.Normalizer.No" />
<MemberSignature Language="F#" Value="static member No : Android.Icu.Text.Normalizer.QuickCheckResult" Usage="Android.Icu.Text.Normalizer.No" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("NO", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("NO", 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.Normalizer+QuickCheckResult</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="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.Normalizer.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Icu.Text.Normalizer.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.Normalizer.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Icu.Text.Normalizer.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>