Classes extended from AbstractCollection:Object | --AbstractCollection
uses: Collection, Object
utilJapha 1.0Ryan Gantt
@void add()
void addAll()
void clear()
void contains()
void containsAll()
boolean isEmpty()
ListIterator iterator()
void remove()
void removeAll()
void retainAll()
int size()
Object[] toArray()
String toString()
Add an object to the list
public
Append a collection to this collection
public
Clear the current collection. Deletes all elements.
public
'Cruise' through the collection, searching for a particular object
public
Check if this collection contains all of the elements of the passed collection
public
Checks if the current collection has no elements
true iff the collection has no elements
public
Returns an instance of ListIterator to iterate over the current collection
To iterate over the current collection
@
public
Removes an element from the collection
public
Remove an entire collection from the current collection
public
Returns the number of elements in the current collection
The number of elements in the collection
@
public
Create a normal array out of the current collection
an array of objects contained in the current collection
public
Overrides: Object::toString()
Convert the current array to a string
the string representation of the collection
public