Package java.util

Abstract Class AbstractCollection

extends Object
implements Collection

Basic implementation of the Collection interface.

To implement an unmodifiable collection, the programmer needs only to extend this class and provide implementations for the iterator and size methods.

To implement a modifiable collection, the programmer must additionally override this class's add method and the iterator returned by the iterator method must additionally implement its remove method.

Public Constructors

Public Methods

Methods inherited from java.lang.Object

_INSERT_INHERITED_METHOD_ENTRY_HERE_

_INSERT_FIELDS_ENTRY_HERE_