public KeySetClass(IntValueHashMap map)
 {
     this.map = map;
 }
        public void PutAll(IntValueHashMap t)
        {
            Iterator it = t.KeySet().Iterator();

            while (it.HasNext())
            {
                Object key = it.Next();

                Put(key, t.Get(key));
            }
        }