Java.Util.AbstractList: Method Members

The methods of Java.Util.AbstractList are listed below. For a list of all members, see the AbstractList Members list.

See Also: Inherited members from Java.Util.AbstractCollection

Public Methods

Add(int, Java.Lang.Object)
Documentation for this section has not yet been entered.
AddAll(int, ICollection) : bool
Documentation for this section has not yet been entered.
abstract
Get(int) : Java.Lang.Object
Returns the element at the specified location in this list.
IndexOf(Java.Lang.Object) : int
Searches this list for the specified object and returns the index of the first occurrence.
override
Iterator() : IIterator
Returns an iterator on the elements of this list.
LastIndexOf(Java.Lang.Object) : int
Searches this list for the specified object and returns the index of the last occurrence.
ListIterator() : IListIterator
Returns a ListIterator on the elements of this list.
ListIterator(int) : IListIterator
Returns a list iterator on the elements of this list.
Remove(int) : Java.Lang.Object
Removes the object at the specified location from this list.
Set(int, Java.Lang.Object) : Java.Lang.Object
Documentation for this section has not yet been entered.
SubList(int, int) : IList
Returns a part of consecutive elements of this list as a view.

Protected Methods

RemoveRange(int, int)
Removes the objects in the specified range from the start to the end index minus one.