Uses of Interface
net.walend.collection.Map

Packages that use Map
net.walend.collection This package contains a collection kit. 
net.walend.collection.test This package contains tests for the net.walend.collection kit. 
net.walend.lyophil.collection This package contains a persistent collection kit based on Lyophilizer. 
 

Uses of Map in net.walend.collection
 

Subinterfaces of Map in net.walend.collection
 interface MutableMap
          MutableMap adds mutator methods to Map.
 

Classes in net.walend.collection that implement Map
 class AbstractHashMap
          This class is a hash table based implementation of the net.walend.collection.Map interface, based very heavily on the java.util.HashMap class by Josh Bloch and ultimately Arthur van Hoff.
 class HashMap
          This is an immutable implementation of Map
 class MutableHashMap
           
 class SoftHashMap
          This MutableHashMap's values are held by soft references which may disapear if memory gets short.
 

Uses of Map in net.walend.collection.test
 

Classes in net.walend.collection.test that implement Map
 class NullValueHashMap
          This MutableHashMap's values are always set to null, to stress test code that relies on a SoftHashMap.
 

Uses of Map in net.walend.lyophil.collection
 

Subinterfaces of Map in net.walend.lyophil.collection
 interface MapToFreezables
          This Map maps any Object as a key to a Freezable.
 interface MutableMapToFreezables
          This MutableMap maps any Object as a key to a Freezable.
 

Classes in net.walend.lyophil.collection that implement Map
 class AbstractFreezerHashMap
          This Map maps any Object as a key to a Freezable.
 class AbstractHashMapToFreezables
          This Map maps any Object as a key to a Freezable.
 class FreezerHashMap
           
 class HashMapToFreezables
           
 class MutableFreezerHashMap
          A MutableMapToFreezables built on AbstractFreezerHashMap.
 class MutableHashMapToFreezables
          A MutableMapToFreezables built on AbstractFreezerHashMap.
 



Copyright (c) 2000, 2001, David Walend