Uses of Interface
com.neoworks.util.MultiMap

Packages that use MultiMap
com.neoworks.util Toolbox of miscellaneous utility classes. 
 

Uses of MultiMap in com.neoworks.util
 

Subinterfaces of MultiMap in com.neoworks.util
 interface SortedMultiMap
          A multimap that further guarantees that it will be in ascending key order, sorted according to the natural ordering of its keys (see the Comparable interface), or by a comparator provided at sorted multimap creation time.
 

Classes in com.neoworks.util that implement MultiMap
 class AbstractMultiMap
          This class provides a skeletal implementation of the MultiMap interface, to minimize the effort required to implement this interface.
 class HashMapMultiMap
          HashMapMultiMap is a Multimap backed by a HashMap of Set objects.
 class VectorMultiMap
          This class implements the MultiMap interface backed with a Vector.