Java.Util.AbstractCollection: Method Members

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

See Also: Inherited members from Java.Lang.Object

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.
abstract
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.
abstract
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.