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