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

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

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

Classes in edu.umd.cloud9.io.map that implement MapKF
 class HMapKFW<K extends WritableComparable<?>>
          Writable representing a map from keys of arbitrary WritableComparable to floats.
 class HMapSFW
          Writable representing a map where keys are Strings and values are floats.
 

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

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

Methods in edu.umd.cloud9.util.map with parameters of type MapKF
 float HMapKF.dot(MapKF<K> m)
          Computes the dot product of this map with another map.
 void HMapKF.plus(MapKF<K> m)
          Adds values of keys from another map to this map.
 void HMapKF.putAll(MapKF<? extends K> m)
           
 void MapKF.putAll(MapKF<? 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 MapKF
HMapKF(MapKF<? extends K> m)
          Constructs a new HMapKF with the same mappings as the specified MapKF.