Java.Util.IList Members

The members of Java.Util.IList are listed below.

Public Properties

[read-only]
IsEmptybool. Returns whether this List contains no elements.

Public Methods

Add(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Add(int, Java.Lang.Object)
Documentation for this section has not yet been entered.
AddAll(ICollection) : bool
Documentation for this section has not yet been entered.
AddAll(int, ICollection) : bool
Documentation for this section has not yet been entered.
Clear()
Removes all elements from this List, leaving it empty.
Contains(Java.Lang.Object) : bool
Tests whether this List contains the specified object.
ContainsAll(ICollection) : bool
Documentation for this section has not yet been entered.
Equals(Java.Lang.Object) : bool
Compares the given object with the List, and returns true if they represent the same object using a class specific comparison.
Get(int) : Java.Lang.Object
Returns the element at the specified location in this List.
GetHashCode() : int
Returns the hash code for this List.
IndexOf(Java.Lang.Object) : int
Searches this List for the specified object and returns the index of the first occurrence.
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 List iterator on the elements of this List.
ListIterator(int) : IListIterator
Returns a list iterator on the elements of this List.
Remove(Java.Lang.Object) : bool
Removes the first occurrence of the specified object from this List.
Remove(int) : Java.Lang.Object
Removes the object at the specified location from this List.
RemoveAll(ICollection) : bool
Documentation for this section has not yet been entered.
RetainAll(ICollection) : bool
Documentation for this section has not yet been entered.
Set(int, Java.Lang.Object) : Java.Lang.Object
Documentation for this section has not yet been entered.
Size() : int
Returns the number of elements in this List.
SubList(int, int) : IList
Returns a List of the specified portion of this List from the given start index to the end index minus one.
ToArray() : Java.Lang.Object[]
Returns an array containing all elements contained in this List.
ToArray(Java.Lang.Object[]) : Java.Lang.Object[]
Documentation for this section has not yet been entered.