public boolean containsValue(int value)
{ return map.containsValue(new Integer(value)); }
public DoubleKeyIntMapIterator entries() {
return new DoubleKeyIntMapIterator() {
Iterator i = map.entrySet().iterator();
Map.Entry lastEntry = null;
public boolean hasNext()
{ return i.hasNext(); }