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