| Class | Description |
|---|---|
| ClosedCollection<E> |
This abstract class implements a collection that does not allow its internal structure to be
directly manipulated.
|
| Collection<E> |
This abstract class defines the invariant methods that all collections must inherit.
|
| Iterator<E> |
This abstract class defines a framework for each concrete iterator class
that allows the iteration over a collection's elements.
|
| Manipulator<E> |
This abstract class extends the
Iterator class by allowing the
manipulation of the collection's elements. |
| OpenCollection<E> |
This abstract class implements a collection that allows its internal structure to be
directly manipulated.
|
| OrderedCollection<E> |
This abstract class defines the invariant methods that all ordered collections must inherit.
|
| SortableCollection<E> |
This abstract class defines the invariant methods that all sortable collections must inherit.
|
| Sorter<E> |
This abstract class defines a framework for each concrete sorter class
that sorts the elements in a collection using a specific algorithm and
comparator function.
|
Copyright © 2015 Crater Dog Technologies(TM). All rights reserved.