Uses of Interface
textbender.g.util.MultiMap

Packages that use MultiMap
textbender.a.r.page   
textbender.g.util Java utility related code 
 

Uses of MultiMap in textbender.a.r.page
 

Methods in textbender.a.r.page that return MultiMap
 MultiMap<String,Element> PageVisit.locusToGeneMap()
          Map of genes, keyed by locus.
 

Uses of MultiMap in textbender.g.util
 

Classes in textbender.g.util that implement MultiMap
static class MultiMap.UnmodifiableMultiMap<K,V>
          A multi-map that wraps an underlying multi-map to make it unmodifiable.
 class MultiMapRM<K,V>
          A multi-map optimized for the case of rare multiples.
 class MultiMapW<K,V>
          A multi-map that wraps an underlying multi-map.
 

Methods in textbender.g.util that return MultiMap
 MultiMap<K,V> MultiMapW.multiMap()
          Returns the underlying multi-map.
static
<K,V> MultiMap<K,V>
MultiMap.U.unmodifiableMultiMap(MultiMap<K,V> multiMap)
          Returns an unmodifiable view of a multi-map.
 

Methods in textbender.g.util with parameters of type MultiMap
static
<K,V> MultiMap<K,V>
MultiMap.U.unmodifiableMultiMap(MultiMap<K,V> multiMap)
          Returns an unmodifiable view of a multi-map.
 

Constructors in textbender.g.util with parameters of type MultiMap
MultiMap.UnmodifiableMultiMap(MultiMap<K,V> multiMap)
           
MultiMapW(MultiMap<K,V> multiMap)
          Creates a MultiMapW.