Uses of Interface
edu.umd.cloud9.util.map.MapKI

Packages that use MapKI
edu.umd.cloud9.io.map   
edu.umd.cloud9.util.map   
 

Uses of MapKI in edu.umd.cloud9.io.map
 

Classes in edu.umd.cloud9.io.map that implement MapKI
 class HMapKIW<K extends WritableComparable<?>>
          Writable representing a map from keys of arbitrary WritableComparable to ints.
 class HMapSIW
          Writable representing a map where keys are Strings and values are ints.
 

Uses of MapKI in edu.umd.cloud9.util.map
 

Classes in edu.umd.cloud9.util.map that implement MapKI
 class HMapKI<K extends Comparable<?>>
          Hash-based implementation of the MapKI interface.
 

Methods in edu.umd.cloud9.util.map with parameters of type MapKI
 int HMapKI.dot(MapKI<K> m)
          Computes the dot product of this map with another map.
 void HMapKI.plus(MapKI<K> m)
          Adds values of keys from another map to this map.
 void HMapKI.putAll(MapKI<? extends K> m)
           
 void MapKI.putAll(MapKI<? extends K> m)
          Copies all of the mappings from the specified map to this map.
 

Constructors in edu.umd.cloud9.util.map with parameters of type MapKI
HMapKI(MapKI<? extends K> m)
          Constructs a new HMapKI with the same mappings as the specified MapKI.