Java.Util.ICollection Members

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

Public Properties

[read-only]
IsEmptybool. Returns if this Collection contains no elements.

Public Methods

Add(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
AddAll(ICollection) : bool
Documentation for this section has not yet been entered.
Clear()
Removes all elements from this Collection, leaving it empty (optional).
Contains(Java.Lang.Object) : bool
Tests whether this Collection contains the specified object.
ContainsAll(ICollection) : bool
Documentation for this section has not yet been entered.
Equals(Java.Lang.Object) : bool
Compares the argument to the receiver, and returns true if they represent the same object using a class specific comparison.
GetHashCode() : int
Returns an integer hash code for the receiver.
Iterator() : IIterator
Returns an instance of Java.Util.IIterator that may be used to access the objects contained by this Collection.
Remove(Java.Lang.Object) : bool
Removes one instance of the specified object from this Collection if one is contained (optional).
RemoveAll(ICollection) : bool
Documentation for this section has not yet been entered.
RetainAll(ICollection) : bool
Documentation for this section has not yet been entered.
Size() : int
Returns a count of how many objects this Collection contains.
ToArray() : Java.Lang.Object[]
Returns a new array containing all elements contained in this Collection.
ToArray(Java.Lang.Object[]) : Java.Lang.Object[]
Documentation for this section has not yet been entered.