Package java.util

Interface Collection

The Collection interface is the root interface in the collection hierarchy. A collection represents a group of objects, known as its elements. It is not allowed to directly implement this interface. This interface is typically used to pass collection around and manibulate them where maximum generality is desierd.

All general-purpose Collection implementation classes which typically implement Collection indirectly through one of its subinterfaces should provide two "standard" constructors:

In effect, the latter constructor allows the user to copy any collection, producing an equivalent collection of the desired implementation type.

_INSERT_CONSTRUCTOR_ENTRY_HERE_

Public Methods

_INSERT_INHERITED_METHOD_ENTRY_HERE_

_INSERT_FIELDS_ENTRY_HERE_