FastIteratingContainer | The FastIteratingContainer implementation of the Container interface assuems two
things:
- Puts and removes are rare in proportion to gets and iteration are common.
|
MapContainer | A very basic, HashMap-based implementation of the hashmap container strategy,
using nothing more than a basic hashmap to store key/value pairs. |
WeakReferenceContainer | An implementation of a container that uses weak references for storing values
in the map, so that values can be removed from the map by the system when the
system is under memory pressure. |