[all packages] [package java.util] [class hierarchy] [index]

public abstract class java.util.AbstractCollection<A>

(source file: AbstractCollection.java)
java.lang.Object
   |
   +----java.util.AbstractCollection<A>

The pure class interface.
public abstract class AbstractCollection<A>
  implements Collection<A>
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.

See also:
Collection

Constuctor Index

O AbstractCollection()

Methods

O add(A)
Ensures that this Collection contains the specified element (optional operation)
O addAll(Collection<A>)
Adds all of the elements in the specified Collection to this Collection (optional
O clear()
Removes all of the elements from this Collection (optional operation). The Collection
O contains(A)
Returns true if this Collection contains the specified element
O containsAll(Collection<A>)
Returns true if this Collection contains all of the elements in the specified
O isEmpty()
Returns true if this Collection contains no elements. This implementation returns
O iterator()
Returns an Iterator over the elements contained in this Collection.
O remove(A)
Removes a single instance of the specified element from this Collection, if it is present
O removeAll(Collection<A>)
Removes from this Collection all of its elements that are contained in the specified
O retainAll(Collection<A>)
Retains only the elements in this Collection that are contained in the specified
O size()
Returns the number of elements in this Collection.
O toArray(A[])
Returns an array containing all of the elements in this Collection, whose runtime type is
O toArray()
Returns an array containing all of the elements in this Collection
O toString()
Returns a string representation of this Collection, containing the String representation

Constructors

O AbstractCollection
public AbstractCollection();

Methods

O iterator
public abstract Iterator<A> iterator();
Returns an Iterator over the elements contained in this Collection.

O size

public abstract int size();
Returns the number of elements in this Collection.

O isEmpty

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

O contains

public boolean contains(A 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.

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

O toArray

public A[] toArray(A[] 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.

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.

O add

public boolean add(A 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.

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.

O remove

public boolean remove(A 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.

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.

O containsAll

public boolean containsAll(Collection<A> 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.

See also:
contains(Object)

O addAll

public boolean addAll(Collection<A> 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.

Throws:
UnsupportedOperationException -addAll is not supported by this Collection.
See also:
add(Object)

O removeAll

public boolean removeAll(Collection<A> 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.

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)

O retainAll

public boolean retainAll(Collection<A> 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.

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)

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

Throws:
UnsupportedOperationException -remove is not supported by this Collection.

O toString

public String toString();
Returns a string representation of this Collection, containing the String representation of each element.

Overrides:
toString in class Object


[all packages] [package java.util] [class hierarchy] [index]
java.util.AbstractCollection.html