Method Summary |
|
void | clear() Clears this map. |
boolean | containsKey(boolean key) Indicates whether this map contains a mapping from a specified
key. |
boolean | containsValue(byte value) Indicates whether this map contains a mapping to a specified
value.
Parameters: value - the value to test for. |
BooleanKeyByteMapIterator | entries() Returns an iterator over the entries of this map. |
boolean | equals(Object obj) Indicates whether this map is equal to some object.
Parameters: obj - the object with which to compare this map. |
byte | get(boolean key) Maps a specified key to a value. |
int | hashCode() Returns a hash code value for this map. |
boolean | isEmpty() Indicates whether this map is empty. |
BooleanSet | keySet() Returns a set view of the keys of this map. |
byte | lget() Returns the last value corresponding to a positive result
from
BooleanKeyByteMap.containsKey(boolean) containsKey(boolean) . |
byte | put(boolean key, byte value) Adds a mapping from a specified key to a specified value to
this map. |
void | putAll(BooleanKeyByteMap map) Adds all mappings from a specified map to this map. |
byte | remove(boolean key) Removes the mapping from a specified key from this map.
Parameters: key - the key whose mapping to remove from this map. |
int | size() Returns the size of this map. |
byte | tget(boolean key) Maps a specified key to a value. |
void | trimToSize() Minimizes the memory used by this map. |
ByteCollection | values() Returns a collection view of the values in this map. |