Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Class java.util.AbstractCollection

java.lang.Object
    |
    +----java.util.AbstractCollection
Subclasses:
AbstractList, AbstractSet

public abstract class AbstractCollection
extends Object
implements Collection
This class provides a skeletal implementation of the Collection interface, to minimize the effort required to implement this interface.

To implement an unmodifiable Collection, the programmer needs only to extend this class and provide implementations for the iterator and size methods. (The Iterator returned by the iterator method must implement hasNext and next.)

To implement a modifiable Collection, the programmer must additionally override this class's add method (which otherwise throws an UnsupportedOperationException), and the Iterator returned by the iterator method must additionally implement its remove method.

The programmer should generally provide a void (no argument) and Collection constructor, as per the recommendation in the Collection interface specification.

The documentation for each non-abstract methods in this class describes its implementation in detail. Each of these methods may be overridden if the Collection being implemented admits a more efficient implementation.

Since:
JDK1.2
See Also:
Collection

Constructor Summary
 AbstractCollection()
 
 

Method Summary
boolean  add(Object o)
Ensures that this Collection contains the specified element (optional operation).
boolean  addAll(Collection c)
Adds all of the elements in the specified Collection to this Collection (optional operation).
void  clear()
Removes all of the elements from this Collection (optional operation).
boolean  contains(Object o)
Returns true if this Collection contains the specified element.
boolean  containsAll(Collection c)
Returns true if this Collection contains all of the elements in the specified Collection.
boolean  isEmpty()
Returns true if this Collection contains no elements.
Iterator  iterator()
Returns an Iterator over the elements contained in this Collection.
boolean  remove(Object o)
Removes a single instance of the specified element from this Collection, if it is present (optional operation).
boolean  removeAll(Collection c)
Removes from this Collection all of its elements that are contained in the specified Collection (optional operation).
boolean  retainAll(Collection c)
Retains only the elements in this Collection that are contained in the specified Collection (optional operation).
int  size()
Returns the number of elements in this Collection.
Object[]  toArray()
Returns an array containing all of the elements in this Collection.
Object[]  toArray(Object[] a)
Returns an array containing all of the elements in this Collection, whose runtime type is that of the specified array.
String  toString()
Returns a string representation of this Collection, containing the String representation of each element.
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractCollection

public AbstractCollection()
Method Detail

iterator

public abstract Iterator iterator()
Returns an Iterator over the elements contained in this Collection.
Implements:
iterator in interface Collection

size

public abstract int size()
Returns the number of elements in this Collection.
Implements:
size in interface Collection

isEmpty

public boolean isEmpty()
Returns true if this Collection contains no elements. This implementation returns size() == 0.
Implements:
isEmpty in interface Collection

contains

public boolean contains(Object o)
Returns true if this Collection contains the specified element. More formally, returns true if and only if this Collection contains at least one element e such that (o==null ? e==null : o.equals(e)).

This implementation iterates over the elements in the Collection, checking each element in turn for equality with o.

Implements:
contains in interface Collection

toArray

public Object[] toArray()
Returns an array containing all of the elements in this Collection. If the Collection makes any guarantees as to what order its elements are returned by its Iterator, this method must return the elements in the same order. The returned array will be "safe" in that no references to it are maintained by the Collection. (In other words, this method must allocate a new array even if the Collection is backed by an Array). The caller is thus free to modify the returned array.

This implementation allocates the array to be returned, and iterates over the elements in the Collection, storing each object reference in the next consecutive element of the array, starting with element 0.

Implements:
toArray in interface Collection

toArray

public Object[] toArray(Object[] a)
Returns an array containing all of the elements in this Collection, whose runtime type is that of the specified array. If the Collection fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this Collection.

If the Collection fits in the specified array with room to spare (i.e., the array has more elements than the Collection), the element in the array immediately following the end of the collection is set to null. This is useful in determining the length of the Collection only if the caller knows that the Collection does not contain any null elements.)

If this Collection makes any guarantees as to what order its elements are returned by its Iterator, this method must return the elements in the same order.

This implementation checks if the array is large enough to contain the Collection; if not, it allocates a new array of the correct size and type (using reflection). Then, it iterates over the Collection, storing each object reference in the next consecutive element of the array, starting with element 0. If the array is larger than the Collection, a null is stored in the first location after the end of the Collection.

Implements:
toArray in interface Collection
Parameters:
a - the array into which the elements of the Collection are to be stored, if it is big enough; otherwise, a new array of the same runtime type is allocated for this purpose.
Returns:
an array containing the elements of the Collection.
Throws:
NullPointerException - The specified array, a, is null.
ArrayStoreException - the runtime type of a is not a supertype of the runtime type of every element in this Collection.

add

public boolean add(Object o)
Ensures that this Collection contains the specified element (optional operation). Returns true if the Collection changed as a result of the call. (Returns false if this Collection does not permit duplicates and already contains the specified element.) Collections that support this operation may place limitations on what elements may be added to the Collection. In particular, some Collections will refuse to add null elements, and others will impose restrictions on the type of elements that may be added. Collection classes should clearly specify in their documentation any restrictions on what elements may be added.

This implementation always throws an UnsupportedOperationException.

Implements:
add in interface Collection
Parameters:
o - element whose presence in this Collection is to be ensured.
Returns:
true if the Collection changed as a result of the call.
Throws:
UnsupportedOperationException - add is not supported by this Collection.
NullPointerException - this Collection does not permit null elements, and the specified element is null.
ClassCastException - class of the specified element prevents it from being added to this Collection.
IllegalArgumentException - some aspect of this element prevents it from being added to this Collection.

remove

public boolean remove(Object o)
Removes a single instance of the specified element from this Collection, if it is present (optional operation). More formally, removes an element e such that (o==null ? e==null : o.equals(e)), if the Collection contains one or more such elements. Returns true if the Collection contained the specified element (or equivalently, if the Collection changed as a result of the call).

This implementation iterates over the Collection looking for the specified element. If it finds the element, it removes the element from the Collection using the iterator's remove method.

Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by this Collection's iterator method does not implement the remove method.

Implements:
remove in interface Collection
Parameters:
o - element to be removed from this Collection, if present.
Returns:
true if the Collection contained the specified element.
Throws:
UnsupportedOperationException - remove is not supported by this Collection.

containsAll

public boolean containsAll(Collection c)
Returns true if this Collection contains all of the elements in the specified Collection.

This implementation iterates over the specified Collection, checking each element returned by the Iterator in turn to see if it's contained in this Collection. If all elements are so contained true is returned, otherwise false.

Implements:
containsAll in interface Collection
See Also:
contains(Object)

addAll

public boolean addAll(Collection c)
Adds all of the elements in the specified Collection to this Collection (optional operation). The behavior of this operation is undefined if the specified Collection is modified while the operation is in progress. (This implies that the behavior of this call is undefined if the the specified Collection is this Collection, and this Collection is nonempty.)

This implementation iterates over the specified Collection, and adds each object returned by the Iterator to this Collection, in turn.

Note that this implementation will throw an UnsupportedOperationException unless add is overridden.

Implements:
addAll in interface Collection
Throws:
UnsupportedOperationException - addAll is not supported by this Collection.
See Also:
add(Object)

removeAll

public boolean removeAll(Collection c)
Removes from this Collection all of its elements that are contained in the specified Collection (optional operation).

This implementation iterates over this Collection, checking each element returned by the Iterator in turn to see if it's contained in the specified Collection. If it's so contained, it's removed from this Collection with the Iterator's remove method.

Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by iterator does not implement the remove method.

Implements:
removeAll in interface Collection
Returns:
true if this Collection changed as a result of the call.
Throws:
UnsupportedOperationException - removeAll is not supported by this Collection.
See Also:
remove(Object), contains(Object)

retainAll

public boolean retainAll(Collection c)
Retains only the elements in this Collection that are contained in the specified Collection (optional operation). In other words, removes from this Collection all of its elements that are not contained in the specified Collection.

This implementation iterates over this Collection, checking each element returned by the Iterator in turn to see if it's contained in the specified Collection. If it's not so contained, it's removed from this Collection with the Iterator's remove method.

Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by iterator does not implement the remove method.

Implements:
retainAll in interface Collection
Returns:
true if this Collection changed as a result of the call.
Throws:
UnsupportedOperationException - retainAll is not supported by this Collection.
See Also:
remove(Object), contains(Object)

clear

public void clear()
Removes all of the elements from this Collection (optional operation). The Collection will be empty after this call returns (unless it throws an exception).

This implementation iterates over this Collection, removing each element using the Iterator.remove operation. Most implementations will probably choose to override this method for efficiency.

Note that this implementation will throw an UnsupportedOperationException if the Iterator returned by this Collection's iterator method does not implement the remove method.

Implements:
clear in interface Collection
Throws:
UnsupportedOperationException - remove is not supported by this Collection.

toString

public String toString()
Returns a string representation of this Collection, containing the String representation of each element.
Overrides:
toString in class Object

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.