This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
IList.xml
2339 lines (2326 loc) · 153 KB
/
IList.xml
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="IList" FullName="Java.Util.IList">
<TypeSignature Language="C#" Value="public interface IList : IDisposable, Java.Interop.IJavaPeerable, Java.Util.ICollection" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IList implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class Java.Lang.IIterable, class Java.Util.ICollection, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Java.Util.IList" />
<TypeSignature Language="F#" Value="type IList = interface
 interface ICollection
 interface IIterable
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Lang.IIterable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Util.ICollection</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("java/util/List", "", "Java.Util.IListInvoker")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("java/util/List", "", "Java.Util.IListInvoker")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Java.Interop.JavaTypeParameters(new System.String[] { "E" })]</AttributeName>
<AttributeName Language="F#">[<Java.Interop.JavaTypeParameters(new System.String[] { "E" })>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<param name="<E><E>">the type of elements in this list</param>
<summary>An ordered collection (also known as a <i>sequence</i>).</summary>
<remarks>
<para>An ordered collection (also known as a <i>sequence</i>). The user of this
interface has precise control over where in the list each element is
inserted. The user can access elements by their integer index (position in
the list), and search for elements in the list.</para>
<para>Unlike sets, lists typically allow duplicate elements. More formally,
lists typically allow pairs of elements <c>e1</c> and <c>e2</c>
such that <c>e1.equals(e2)</c>, and they typically allow multiple
null elements if they allow null elements at all. It is not inconceivable
that someone might wish to implement a list that prohibits duplicates, by
throwing runtime exceptions when the user attempts to insert them, but we
expect this usage to be rare.</para>
<para>The <c>List</c> interface places additional stipulations, beyond those
specified in the <c>Collection</c> interface, on the contracts of the
<c>iterator</c>, <c>add</c>, <c>remove</c>, <c>equals</c>, and
<c>hashCode</c> methods. Declarations for other inherited methods are
also included here for convenience.</para>
<para>The <c>List</c> interface provides four methods for positional (indexed)
access to list elements. Lists (like Java arrays) are zero based. Note
that these operations may execute in time proportional to the index value
for some implementations (the <c>LinkedList</c> class, for
example). Thus, iterating over the elements in a list is typically
preferable to indexing through it if the caller does not know the
implementation.</para>
<para>The <c>List</c> interface provides a special iterator, called a
<c>ListIterator</c>, that allows element insertion and replacement, and
bidirectional access in addition to the normal operations that the
<c>Iterator</c> interface provides. A method is provided to obtain a
list iterator that starts at a specified position in the list.</para>
<para>The <c>List</c> interface provides two methods to search for a specified
object. From a performance standpoint, these methods should be used with
caution. In many implementations they will perform costly linear
searches.</para>
<para>The <c>List</c> interface provides two methods to efficiently insert and
remove multiple elements at an arbitrary point in the list.</para>
<para>Note: While it is permissible for lists to contain themselves as elements,
extreme caution is advised: the <c>equals</c> and <c>hashCode</c>
methods are no longer well defined on such a list.</para>
<para>Some list implementations have restrictions on the elements that
they may contain. For example, some implementations prohibit null elements,
and some have restrictions on the types of their elements. Attempting to
add an ineligible element throws an unchecked exception, typically
<c>NullPointerException</c> or <c>ClassCastException</c>. Attempting
to query the presence of an ineligible element may throw an exception,
or it may simply return false; some implementations will exhibit the former
behavior and some will exhibit the latter. More generally, attempting an
operation on an ineligible element whose completion would not result in
the insertion of an ineligible element into the list may throw an
exception or it may succeed, at the option of the implementation.
Such exceptions are marked as "optional" in the specification for this
interface.
<h2>"unmodifiable">Unmodifiable Lists</h2></para>
<para>The <c>List#of(Object...) List.of</c> and
<c>List#copyOf List.copyOf</c> static factory methods
provide a convenient way to create unmodifiable lists. The <c>List</c>
instances created by these methods have the following characteristics:
<ul>
<li>They are <i>unmodifiable</i>. Elements cannot
be added, removed, or replaced. Calling any mutator method on the List
will always cause <c>UnsupportedOperationException</c> to be thrown.
However, if the contained elements are themselves mutable,
this may cause the List's contents to appear to change.
<li>They disallow <c>null</c> elements. Attempts to create them with
<c>null</c> elements result in <c>NullPointerException</c>.
<li>They are serializable if all elements are serializable.
<li>The order of elements in the list is the same as the order of the
provided arguments, or of the elements in the provided array.
<li>The lists and their <c>#subList(int, int) subList</c> views implement the
<c>RandomAccess</c> interface.
<li>They are value-based.
Programmers should treat instances that are #equals(Object) equal
as interchangeable and should not use them for synchronization, or
unpredictable behavior may occur. For example, in a future release,
synchronization may fail. Callers should make no assumptions about the
identity of the returned instances. Factories are free to
create new instances or reuse existing ones.
<li>They are serialized as specified on the
<see href="https://developer.android.com//serialized-form.html#java.util.CollSer">Serialized Form</see>
page.
</ul></para>
<para>Added in 1.2.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List" title="Reference documentation">Java documentation for <code>java.util.List</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>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public bool Add (Java.Lang.Object? e);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Add(class Java.Lang.Object e) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Add(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member Add : Java.Lang.Object -> bool" Usage="iList.Add e" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Add(Java.Lang.Object)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("add", "(Ljava/lang/Object;)Z", "GetAdd_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("add", "(Ljava/lang/Object;)Z", "GetAdd_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="e">element to be appended to this list</param>
<summary>Appends the specified element to the end of this list (optional
operation).</summary>
<returns>
<c>true</c> (as specified by <c>Collection#add</c>)</returns>
<remarks>
<para>Appends the specified element to the end of this list (optional
operation).</para>
<para>Lists that support this operation may place limitations on what
elements may be added to this list. In particular, some
lists will refuse to add null elements, and others will impose
restrictions on the type of elements that may be added. List
classes should clearly specify in their documentation any restrictions
on what elements may be added.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#add(E)" title="Reference documentation">Java documentation for <code>java.util.List.add(E)</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="Add">
<MemberSignature Language="C#" Value="public void Add (int index, Java.Lang.Object? element);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Add(int32 index, class Java.Lang.Object element) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Add(System.Int32,Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member Add : int * Java.Lang.Object -> unit" Usage="iList.Add (index, element)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("add", "(ILjava/lang/Object;)V", "GetAdd_ILjava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("add", "(ILjava/lang/Object;)V", "GetAdd_ILjava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
<Parameter Name="element" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="index">index at which the specified element is to be inserted</param>
<param name="element">element to be inserted</param>
<summary>Inserts the specified element at the specified position in this list
(optional operation).</summary>
<remarks>
<para>Inserts the specified element at the specified position in this list
(optional operation). Shifts the element currently at that position
(if any) and any subsequent elements to the right (adds one to their
indices).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#add(int,%20E)" title="Reference documentation">Java documentation for <code>java.util.List.add(int, E)</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="AddAll">
<MemberSignature Language="C#" Value="public bool AddAll (System.Collections.ICollection c);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool AddAll(class System.Collections.ICollection c) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.AddAll(System.Collections.ICollection)" />
<MemberSignature Language="F#" Value="abstract member AddAll : System.Collections.ICollection -> bool" Usage="iList.AddAll c" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.AddAll(System.Collections.ICollection)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="c" Type="System.Collections.ICollection" />
</Parameters>
<Docs>
<param name="c">collection containing elements to be added to this list</param>
<summary>Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation).</summary>
<returns>
<c>true</c> if this list changed as a result of the call</returns>
<remarks>
<para>Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation). The behavior of this
operation is undefined if the specified collection is modified while
the operation is in progress. (Note that this will occur if the
specified collection is this list, and it's nonempty.)</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#addAll(java.util.Collection%3C?%20extends%20E%3E)" title="Reference documentation">Java documentation for <code>java.util.List.addAll(java.util.Collection<? extends E>)</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="AddAll">
<MemberSignature Language="C#" Value="public bool AddAll (int index, System.Collections.ICollection c);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool AddAll(int32 index, class System.Collections.ICollection c) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.AddAll(System.Int32,System.Collections.ICollection)" />
<MemberSignature Language="F#" Value="abstract member AddAll : int * System.Collections.ICollection -> bool" Usage="iList.AddAll (index, c)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
<Parameter Name="c" Type="System.Collections.ICollection" />
</Parameters>
<Docs>
<param name="index">index at which to insert the first element from the
specified collection</param>
<param name="c">collection containing elements to be added to this list</param>
<summary>Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).</summary>
<returns>
<c>true</c> if this list changed as a result of the call</returns>
<remarks>
<para>Inserts all of the elements in the specified collection into this
list at the specified position (optional operation). Shifts the
element currently at that position (if any) and any subsequent
elements to the right (increases their indices). The new elements
will appear in this list in the order that they are returned by the
specified collection's iterator. The behavior of this operation is
undefined if the specified collection is modified while the
operation is in progress. (Note that this will occur if the specified
collection is this list, and it's nonempty.)</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#addAll(int,%20java.util.Collection%3C?%20extends%20E%3E)" title="Reference documentation">Java documentation for <code>java.util.List.addAll(int, java.util.Collection<? extends E>)</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="Clear">
<MemberSignature Language="C#" Value="public void Clear ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Clear() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Clear" />
<MemberSignature Language="F#" Value="abstract member Clear : unit -> unit" Usage="iList.Clear " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Clear</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("clear", "()V", "GetClearHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("clear", "()V", "GetClearHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Removes all of the elements from this list (optional operation).</summary>
<remarks>
<para>Removes all of the elements from this list (optional operation).
The list will be empty after this call returns.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#clear()" title="Reference documentation">Java documentation for <code>java.util.List.clear()</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>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.UnsupportedOperationException">if removing from this <c>List</c> is not supported.</exception>
<altmember cref="P:Java.Util.IList.IsEmpty" />
<altmember cref="M:Java.Util.IList.Size" />
</Docs>
</Member>
<Member MemberName="Contains">
<MemberSignature Language="C#" Value="public bool Contains (Java.Lang.Object? o);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Contains(class Java.Lang.Object o) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Contains(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member Contains : Java.Lang.Object -> bool" Usage="iList.Contains o" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Contains(Java.Lang.Object)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("contains", "(Ljava/lang/Object;)Z", "GetContains_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("contains", "(Ljava/lang/Object;)Z", "GetContains_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="o">element whose presence in this list is to be tested</param>
<summary>Returns <c>true</c> if this list contains the specified element.</summary>
<returns>
<c>true</c> if this list contains the specified element</returns>
<remarks>
<para>Returns <c>true</c> if this list contains the specified element.
More formally, returns <c>true</c> if and only if this list contains
at least one element <c>e</c> such that
<c>Objects.equals(o, e)</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#contains(java.lang.Object)" title="Reference documentation">Java documentation for <code>java.util.List.contains(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>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="ContainsAll">
<MemberSignature Language="C#" Value="public bool ContainsAll (System.Collections.ICollection c);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool ContainsAll(class System.Collections.ICollection c) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.ContainsAll(System.Collections.ICollection)" />
<MemberSignature Language="F#" Value="abstract member ContainsAll : System.Collections.ICollection -> bool" Usage="iList.ContainsAll c" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.ContainsAll(System.Collections.ICollection)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "GetContainsAll_Ljava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "GetContainsAll_Ljava_util_Collection_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="c" Type="System.Collections.ICollection" />
</Parameters>
<Docs>
<param name="c">collection to be checked for containment in this list</param>
<summary>Returns <c>true</c> if this list contains all of the elements of the
specified collection.</summary>
<returns>
<c>true</c> if this list contains all of the elements of the
specified collection</returns>
<remarks>
<para>Returns <c>true</c> if this list contains all of the elements of the
specified collection.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#containsAll(java.util.Collection%3C?%3E)" title="Reference documentation">Java documentation for <code>java.util.List.containsAll(java.util.Collection<?>)</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="CopyOf">
<MemberSignature Language="C#" Value="public static System.Collections.IList CopyOf (System.Collections.ICollection coll);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Collections.IList CopyOf(class System.Collections.ICollection coll) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.CopyOf(System.Collections.ICollection)" />
<MemberSignature Language="F#" Value="static member CopyOf : System.Collections.ICollection -> System.Collections.IList" Usage="Java.Util.IList.CopyOf coll" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("copyOf", "(Ljava/util/Collection;)Ljava/util/List;", "", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("copyOf", "(Ljava/util/Collection;)Ljava/util/List;", "", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Java.Interop.JavaTypeParameters(new System.String[] { "E" })]</AttributeName>
<AttributeName Language="F#">[<Java.Interop.JavaTypeParameters(new System.String[] { "E" })>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.IList</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="coll" Type="System.Collections.ICollection" />
</Parameters>
<Docs>
<param name="<E><E>">the <c>List</c>'s element type</param>
<param name="coll">a <c>Collection</c> from which elements are drawn, must be non-null</param>
<summary>Returns an unmodifiable List containing the elements of
the given Collection, in its iteration order.</summary>
<returns>a <c>List</c> containing the elements of the given <c>Collection</c></returns>
<remarks>
<para>Returns an unmodifiable List containing the elements of
the given Collection, in its iteration order. The given Collection must not be null,
and it must not contain any null elements. If the given Collection is subsequently
modified, the returned List will not reflect such modifications.</para>
<para>Added in 10.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#copyOf(java.util.Collection%3C?%20extends%20E%3E)" title="Reference documentation">Java documentation for <code>java.util.List.copyOf(java.util.Collection<? extends E>)</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 bool Equals (Java.Lang.Object? o);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Equals(class Java.Lang.Object o) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Equals(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member Equals : Java.Lang.Object -> bool" Usage="iList.Equals o" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Equals(Java.Lang.Object)</InterfaceMember>
</Implements>
<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", "GetEquals_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("equals", "(Ljava/lang/Object;)Z", "GetEquals_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="o">the object to be compared for equality with this list</param>
<summary>Compares the specified object with this list for equality.</summary>
<returns>
<c>true</c> if the specified object is equal to this list</returns>
<remarks>
<para>Compares the specified object with this list for equality. Returns
<c>true</c> if and only if the specified object is also a list, both
lists have the same size, and all corresponding pairs of elements in
the two lists are <i>equal</i>. (Two elements <c>e1</c> and
<c>e2</c> are <i>equal</i> if <c>Objects.equals(e1, e2)</c>.)
In other words, two lists are defined to be
equal if they contain the same elements in the same order. This
definition ensures that the equals method works properly across
different implementations of the <c>List</c> interface.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#equals(java.lang.Object)" title="Reference documentation">Java documentation for <code>java.util.List.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>
<since version="Added in API level 1" />
<altmember cref="M:Java.Util.IList.GetHashCode" />
</Docs>
</Member>
<Member MemberName="Get">
<MemberSignature Language="C#" Value="public Java.Lang.Object? Get (int index);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.Object Get(int32 index) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Get(System.Int32)" />
<MemberSignature Language="F#" Value="abstract member Get : int -> Java.Lang.Object" Usage="iList.Get index" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("get", "(I)Ljava/lang/Object;", "GetGet_IHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("get", "(I)Ljava/lang/Object;", "GetGet_IHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">index of the element to return</param>
<summary>Returns the element at the specified position in this list.</summary>
<returns>the element at the specified position in this list</returns>
<remarks>
<para>Returns the element at the specified position in this list.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#get(int)" title="Reference documentation">Java documentation for <code>java.util.List.get(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>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.IndexOutOfBoundsException">if <c>location = size()</c></exception>
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 GetHashCode() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.GetHashCode" />
<MemberSignature Language="F#" Value="abstract member GetHashCode : unit -> int" Usage="iList.GetHashCode " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.GetHashCode</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("hashCode", "()I", "GetGetHashCodeHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("hashCode", "()I", "GetGetHashCodeHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns the hash code value for this list.</summary>
<returns>the hash code value for this list</returns>
<remarks>
<para>Returns the hash code value for this list. The hash code of a list
is defined to be the result of the following calculation:</para>
<code lang="text/java">{@code
int hashCode = 1;
for (E e : list)
hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
}</code>
<para>This ensures that <c>list1.equals(list2)</c> implies that
<c>list1.hashCode()==list2.hashCode()</c> for any two lists,
<c>list1</c> and <c>list2</c>, as required by the general
contract of <c>Object#hashCode</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#hashCode()" title="Reference documentation">Java documentation for <code>java.util.List.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>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="IndexOf">
<MemberSignature Language="C#" Value="public int IndexOf (Java.Lang.Object? o);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 IndexOf(class Java.Lang.Object o) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.IndexOf(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member IndexOf : Java.Lang.Object -> int" Usage="iList.IndexOf o" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("indexOf", "(Ljava/lang/Object;)I", "GetIndexOf_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("indexOf", "(Ljava/lang/Object;)I", "GetIndexOf_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="o">element to search for</param>
<summary>Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.</summary>
<returns>the index of the first occurrence of the specified element in
this list, or -1 if this list does not contain the element</returns>
<remarks>
<para>Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
More formally, returns the lowest index <c>i</c> such that
<c>Objects.equals(o, get(i))</c>,
or -1 if there is no such index.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#indexOf(java.lang.Object)" title="Reference documentation">Java documentation for <code>java.util.List.indexOf(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>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="IsEmpty">
<MemberSignature Language="C#" Value="public bool IsEmpty { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsEmpty" />
<MemberSignature Language="DocId" Value="P:Java.Util.IList.IsEmpty" />
<MemberSignature Language="F#" Value="member this.IsEmpty : bool" Usage="Java.Util.IList.IsEmpty" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Java.Util.ICollection.IsEmpty</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isEmpty", "()Z", "GetIsEmptyHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isEmpty", "()Z", "GetIsEmptyHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns whether this <c>List</c> contains no elements.</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>
<since version="Added in API level 1" />
<altmember cref="M:Java.Util.IList.Size" />
</Docs>
</Member>
<Member MemberName="Iterator">
<MemberSignature Language="C#" Value="public Java.Util.IIterator Iterator ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Util.IIterator Iterator() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Iterator" />
<MemberSignature Language="F#" Value="abstract member Iterator : unit -> Java.Util.IIterator" Usage="iList.Iterator " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Iterator</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("iterator", "()Ljava/util/Iterator;", "GetIteratorHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("iterator", "()Ljava/util/Iterator;", "GetIteratorHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Util.IIterator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns an iterator over the elements in this list in proper sequence.</summary>
<returns>an iterator over the elements in this list in proper sequence</returns>
<remarks>
<para>Returns an iterator over the elements in this list in proper sequence.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#iterator()" title="Reference documentation">Java documentation for <code>java.util.List.iterator()</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>
<since version="Added in API level 1" />
<altmember cref="T:Java.Util.IIterator" />
</Docs>
</Member>
<Member MemberName="Java.Lang.IIterable.Spliterator">
<MemberSignature Language="C#" Value="override sealed Java.Util.ISpliterator IIterable.Spliterator ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig virtual instance class Java.Util.ISpliterator Java.Lang.IIterable.Spliterator() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.Java#Lang#IIterable#Spliterator" />
<MemberSignature Language="F#" Value="abstract member Java.Lang.IIterable.Spliterator : unit -> Java.Util.ISpliterator
override this.Java.Lang.IIterable.Spliterator : unit -> Java.Util.ISpliterator" Usage="iList.Java.Lang.IIterable.Spliterator " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Java.Util.ICollection.Java#Lang#IIterable#Spliterator</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("spliterator", "()Ljava/util/Spliterator;", "GetSpliteratorHandler:Java.Util.IList, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("spliterator", "()Ljava/util/Spliterator;", "GetSpliteratorHandler:Java.Util.IList, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", 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.Util.ISpliterator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Creates a <c>Spliterator</c> over the elements in this list.</summary>
<returns>a <c>Spliterator</c> over the elements in this list</returns>
<remarks>
<para>Creates a <c>Spliterator</c> over the elements in this list.</para>
<para>The <c>Spliterator</c> reports <c>Spliterator#SIZED</c> and
<c>Spliterator#ORDERED</c>. Implementations should document the
reporting of additional characteristic values.</para>
<para>Added in 1.8.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#spliterator()" title="Reference documentation">Java documentation for <code>java.util.List.spliterator()</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="LastIndexOf">
<MemberSignature Language="C#" Value="public int LastIndexOf (Java.Lang.Object? o);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 LastIndexOf(class Java.Lang.Object o) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.LastIndexOf(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="abstract member LastIndexOf : Java.Lang.Object -> int" Usage="iList.LastIndexOf o" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("lastIndexOf", "(Ljava/lang/Object;)I", "GetLastIndexOf_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("lastIndexOf", "(Ljava/lang/Object;)I", "GetLastIndexOf_Ljava_lang_Object_Handler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="o">element to search for</param>
<summary>Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.</summary>
<returns>the index of the last occurrence of the specified element in
this list, or -1 if this list does not contain the element</returns>
<remarks>
<para>Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
More formally, returns the highest index <c>i</c> such that
<c>Objects.equals(o, get(i))</c>,
or -1 if there is no such index.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#lastIndexOf(java.lang.Object)" title="Reference documentation">Java documentation for <code>java.util.List.lastIndexOf(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>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="ListIterator">
<MemberSignature Language="C#" Value="public Java.Util.IListIterator ListIterator ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Util.IListIterator ListIterator() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.ListIterator" />
<MemberSignature Language="F#" Value="abstract member ListIterator : unit -> Java.Util.IListIterator" Usage="iList.ListIterator " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("listIterator", "()Ljava/util/ListIterator;", "GetListIteratorHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("listIterator", "()Ljava/util/ListIterator;", "GetListIteratorHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Util.IListIterator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns a list iterator over the elements in this list (in proper
sequence).</summary>
<returns>a list iterator over the elements in this list (in proper
sequence)</returns>
<remarks>
<para>Returns a list iterator over the elements in this list (in proper
sequence).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#listIterator()" title="Reference documentation">Java documentation for <code>java.util.List.listIterator()</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>
<since version="Added in API level 1" />
<altmember cref="T:Java.Util.IListIterator" />
</Docs>
</Member>
<Member MemberName="ListIterator">
<MemberSignature Language="C#" Value="public Java.Util.IListIterator ListIterator (int index);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Util.IListIterator ListIterator(int32 index) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Util.IList.ListIterator(System.Int32)" />
<MemberSignature Language="F#" Value="abstract member ListIterator : int -> Java.Util.IListIterator" Usage="iList.ListIterator index" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler:Java.Util.IListInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Util.IListIterator</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">index of the first element to be returned from the
list iterator (by a call to <c>ListIterator#next next</c>)</param>
<summary>Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.</summary>
<returns>a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list</returns>
<remarks>
<para>Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
The specified index indicates the first element that would be
returned by an initial call to <c>ListIterator#next next</c>.
An initial call to <c>ListIterator#previous previous</c> would
return the element with the specified index minus one.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/util/List#listIterator(int)" title="Reference documentation">Java documentation for <code>java.util.List.listIterator(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>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.IndexOutOfBoundsException">if <c>location size()</c></exception>