CopyOnWriteArrayList.ListIterator Method

Definition

Overloads

ListIterator()

To be added

ListIterator(Int32)

To be added

ListIterator()

To be added

[Android.Runtime.Register("listIterator", "()Ljava/util/ListIterator;", "GetListIteratorHandler")]
public virtual Java.Util.IListIterator ListIterator ();
[<Android.Runtime.Register("listIterator", "()Ljava/util/ListIterator;", "GetListIteratorHandler")>]
abstract member ListIterator : unit -> Java.Util.IListIterator
override this.ListIterator : unit -> Java.Util.IListIterator

Returns

Implements

Attributes

Remarks

To be added

The returned iterator provides a snapshot of the state of the list when the iterator was constructed. No synchronization is needed while traversing the iterator. The iterator does <em>NOT</em> support the remove, set or add methods.

Java documentation for java.util.concurrent.CopyOnWriteArrayList.listIterator().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ListIterator(Int32)

To be added

[Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")]
public virtual Java.Util.IListIterator ListIterator (int index);
[<Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")>]
abstract member ListIterator : int -> Java.Util.IListIterator
override this.ListIterator : int -> Java.Util.IListIterator

Parameters

index
Int32

the index at which to start the iteration.

Returns

Implements

Attributes

Remarks

To be added

The returned iterator provides a snapshot of the state of the list when the iterator was constructed. No synchronization is needed while traversing the iterator. The iterator does <em>NOT</em> support the remove, set or add methods.

Java documentation for java.util.concurrent.CopyOnWriteArrayList.listIterator(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to