| java.lang.Object org.apache.commons.lang.IntHashMap
IntHashMap | class IntHashMap (Code) | | A hash map that uses primitive ints for the key rather than objects.
Note that this class is for internal optimization purposes only, and may
not be supported in future releases of Jakarta Commons Lang. Utilities of
this sort may be included in future releases of Jakarta Commons Collections.
author: Justin Couch author: Alex Chaffee (alex@apache.org) author: Stephen Colebourne since: 2.0 version: $Revision: 437554 $ See Also: java.util.HashMap |
Method Summary | |
public synchronized void | clear() | public boolean | contains(Object value) Tests if some key maps into the specified value in this hashtable.
This operation is more expensive than the containsKey
method.
Note that this method is identical in functionality to containsValue,
(which is part of the Map interface in the collections framework).
Parameters: value - a value to search for. | public boolean | containsKey(int key) Tests if the specified object is a key in this hashtable.
Parameters: key - possible key. | public boolean | containsValue(Object value) Returns true if this HashMap maps one or more keys
to this value.
Note that this method is identical in functionality to contains
(which predates the Map interface).
Parameters: value - value whose presence in this HashMap is to be tested. | public Object | get(int key) Returns the value to which the specified key is mapped in this map.
Parameters: key - a key in the hashtable. | public boolean | isEmpty() | public Object | put(int key, Object value) Maps the specified key to the specified
value in this hashtable. | protected void | rehash() | public Object | remove(int key) Removes the key (and its corresponding value) from this
hashtable.
This method does nothing if the key is not present in the
hashtable.
Parameters: key - the key that needs to be removed. | public int | size() |
IntHashMap | public IntHashMap()(Code) | | Constructs a new, empty hashtable with a default capacity and load
factor, which is 20 and 0.75 respectively.
|
IntHashMap | public IntHashMap(int initialCapacity)(Code) | | Constructs a new, empty hashtable with the specified initial capacity
and default load factor, which is 0.75 .
Parameters: initialCapacity - the initial capacity of the hashtable. throws: IllegalArgumentException - if the initial capacity is lessthan zero. |
IntHashMap | public IntHashMap(int initialCapacity, float loadFactor)(Code) | | Constructs a new, empty hashtable with the specified initial
capacity and the specified load factor.
Parameters: initialCapacity - the initial capacity of the hashtable. Parameters: loadFactor - the load factor of the hashtable. throws: IllegalArgumentException - if the initial capacity is lessthan zero, or if the load factor is nonpositive. |
clear | public synchronized void clear()(Code) | | Clears this hashtable so that it contains no keys.
|
contains | public boolean contains(Object value)(Code) | | Tests if some key maps into the specified value in this hashtable.
This operation is more expensive than the containsKey
method.
Note that this method is identical in functionality to containsValue,
(which is part of the Map interface in the collections framework).
Parameters: value - a value to search for. true if and only if some key maps to thevalue argument in this hashtable asdetermined by the equals method;false otherwise. throws: NullPointerException - if the value is null . See Also: IntHashMap.containsKey(int) See Also: IntHashMap.containsValue(Object) See Also: java.util.Map |
containsKey | public boolean containsKey(int key)(Code) | | Tests if the specified object is a key in this hashtable.
Parameters: key - possible key. true if and only if the specified object is akey in this hashtable, as determined by the equalsmethod; false otherwise. See Also: IntHashMap.contains(Object) |
containsValue | public boolean containsValue(Object value)(Code) | | Returns true if this HashMap maps one or more keys
to this value.
Note that this method is identical in functionality to contains
(which predates the Map interface).
Parameters: value - value whose presence in this HashMap is to be tested. boolean true if the value is contained See Also: java.util.Map since: JDK1.2 |
get | public Object get(int key)(Code) | | Returns the value to which the specified key is mapped in this map.
Parameters: key - a key in the hashtable. the value to which the key is mapped in this hashtable;null if the key is not mapped to any value inthis hashtable. See Also: IntHashMap.put(int,Object) |
isEmpty | public boolean isEmpty()(Code) | | Tests if this hashtable maps no keys to values.
true if this hashtable maps no keys to values;false otherwise. |
put | public Object put(int key, Object value)(Code) | | Maps the specified key to the specified
value in this hashtable. The key cannot be
null .
The value can be retrieved by calling the get method
with a key that is equal to the original key.
Parameters: key - the hashtable key. Parameters: value - the value. the previous value of the specified key in this hashtable,or null if it did not have one. throws: NullPointerException - if the key is null . See Also: IntHashMap.get(int) |
rehash | protected void rehash()(Code) | | Increases the capacity of and internally reorganizes this
hashtable, in order to accommodate and access its entries more
efficiently.
This method is called automatically when the number of keys
in the hashtable exceeds this hashtable's capacity and load
factor.
|
remove | public Object remove(int key)(Code) | | Removes the key (and its corresponding value) from this
hashtable.
This method does nothing if the key is not present in the
hashtable.
Parameters: key - the key that needs to be removed. the value to which the key had been mapped in this hashtable,or null if the key did not have a mapping. |
size | public int size()(Code) | | Returns the number of keys in this hashtable.
the number of keys in this hashtable. |
|
|