AbstractSequentialList.ListIterator(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a list iterator over the elements in this list (in proper sequence).
[Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")]
public abstract Java.Util.IListIterator ListIterator (int index);
[<Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")>]
override this.ListIterator : int -> Java.Util.IListIterator
Parameters
- index
- Int32
index of first element to be returned from the list
iterator (by a call to the next
method)
Returns
a list iterator over the elements in this list (in proper sequence)
- Attributes
Remarks
Returns a list iterator over the elements in this list (in proper sequence).
Java documentation for java.util.AbstractSequentialList.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.