|
GNU Trove | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.util.AbstractMap
gnu.trove.decorator.TShortByteHashMapDecorator
Wrapper class to make a TShortByteHashMap conform to the java.util.Map API. This class simply decorates an underlying TShortByteHashMap and translates the Object-based APIs into their Trove primitive analogs.
Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.
Created: Mon Sep 23 22:07:40 PDT 2002
| Nested Class Summary |
| Nested classes inherited from class java.util.Map |
java.util.Map.Entry |
| Field Summary | |
protected TShortByteHashMap |
_map
the wrapped primitive map |
| Constructor Summary | |
TShortByteHashMapDecorator(TShortByteHashMap map)
Creates a wrapper that decorates the specified primitive map. |
|
| Method Summary | |
void |
clear()
Empties the map. |
java.lang.Object |
clone()
Clones the underlying trove collection and returns the clone wrapped in a new decorator instance. |
boolean |
containsKey(java.lang.Object key)
Checks for the present of key in the keys of the map. |
boolean |
containsValue(java.lang.Object val)
Checks for the presence of val in the values of the map. |
java.util.Set |
entrySet()
Returns a Set view on the entries of the map. |
boolean |
equals(java.lang.Object other)
Compares this map with another map for equality of their stored entries. |
java.lang.Object |
get(java.lang.Object key)
Retrieves the value for key |
boolean |
isEmpty()
Indicates whether map has any entries. |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Inserts a key/value pair into the map. |
void |
putAll(java.util.Map map)
Copies the key/value mappings in map into this map. |
java.lang.Object |
remove(java.lang.Object key)
Deletes a key/value pair from the map. |
int |
size()
Returns the number of entries in the map. |
protected short |
unwrapKey(java.lang.Object key)
Unwraps a key |
protected byte |
unwrapValue(java.lang.Object value)
Unwraps a value |
protected java.lang.Short |
wrapKey(short k)
Wraps a key |
protected java.lang.Byte |
wrapValue(byte k)
Wraps a value |
| Methods inherited from class java.util.AbstractMap |
hashCode, keySet, toString, values |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
hashCode, keySet, values |
| Field Detail |
protected TShortByteHashMap _map
| Constructor Detail |
public TShortByteHashMapDecorator(TShortByteHashMap map)
| Method Detail |
public java.lang.Object clone()
public java.lang.Object put(java.lang.Object key,
java.lang.Object value)
put in interface java.util.Mapkey - an Object valuevalue - an Object value
public boolean equals(java.lang.Object other)
equals in interface java.util.Mapother - an Object value
public java.lang.Object get(java.lang.Object key)
get in interface java.util.Mapkey - an Object value
public void clear()
clear in interface java.util.Mappublic java.lang.Object remove(java.lang.Object key)
remove in interface java.util.Mapkey - an Object value
public java.util.Set entrySet()
entrySet in interface java.util.MapSet valuepublic boolean containsValue(java.lang.Object val)
containsValue in interface java.util.Mapval - an Object value
boolean valuepublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.Mapkey - an Object value
boolean valuepublic int size()
size in interface java.util.Mappublic boolean isEmpty()
isEmpty in interface java.util.Mappublic void putAll(java.util.Map map)
putAll in interface java.util.Mapmap - a Map valueprotected java.lang.Short wrapKey(short k)
protected short unwrapKey(java.lang.Object key)
protected java.lang.Byte wrapValue(byte k)
protected byte unwrapValue(java.lang.Object value)
|
GNU Trove | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||