public class IntHashMap
extends java.util.AbstractMap
implements java.lang.Cloneable, java.io.Serializable
java.util.HashMap
. IntHashMap is about 25% faster.HashMap
,
Serialized FormConstructor and Description |
---|
IntHashMap()
Constructs a new, empty map with a default capacity and load
factor, which is 0.75.
|
IntHashMap(int initialCapacity)
Constructs a new, empty map with the specified initial capacity
and default load factor, which is 0.75.
|
IntHashMap(int initialCapacity,
float loadFactor)
Constructs a new, empty map with the specified initial
capacity and the specified load factor.
|
IntHashMap(java.util.Map t)
Constructs a new map with the same mappings as the given map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all mappings from this map.
|
IntHashMap |
clone()
Returns a shallow copy of this
IntHashMap instance: the keys and
values themselves are not cloned. |
boolean |
containsKey(int key)
Returns
true if this map contains a mapping for the specified
key. |
boolean |
containsKey(java.lang.Object key)
Returns
true if this map contains a mapping for the specified
key. |
boolean |
containsValue(java.lang.Object value)
Returns
true if this map maps one or more keys to the
specified value. |
java.util.Set<java.util.Map.Entry<java.lang.Integer,java.lang.Object>> |
entrySet()
Returns a collection view of the mappings contained in this map.
|
java.lang.Object |
get(int key)
Returns the value to which this map maps the specified key.
|
java.lang.Object |
get(java.lang.Object key)
Returns the value to which this map maps the specified key.
|
boolean |
isEmpty()
Returns
true if this map contains no key-value mappings. |
java.util.Set<java.lang.Integer> |
keySet()
Returns a set view of the keys contained in this map.
|
java.lang.Object |
put(int key,
java.lang.Object value)
Associates the specified value with the specified key in this map.
|
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Associates the specified value with the specified key in this map.
|
void |
putAll(java.util.Map t)
Copies all of the mappings from the specified map to this one.
|
java.lang.Object |
remove(int key)
Removes the mapping for this key from this map if present.
|
java.lang.Object |
remove(java.lang.Object key)
Removes the mapping for this key from this map if present.
|
int |
size()
Returns the number of key-value mappings in this map.
|
java.util.Collection |
values()
Returns a collection view of the values contained in this map.
|
public IntHashMap(int initialCapacity, float loadFactor)
initialCapacity
- the initial capacity of the IntHashMap.loadFactor
- the load factor of the IntHashMapjava.lang.IllegalArgumentException
- if the initial capacity is less
than zero, or if the load factor is non-positive.public IntHashMap(int initialCapacity)
initialCapacity
- the initial capacity of the IntHashMap.java.lang.IllegalArgumentException
- if the initial capacity is less
than zero.public IntHashMap()
public IntHashMap(java.util.Map t)
public int size()
size
in interface java.util.Map
size
in class java.util.AbstractMap
public boolean isEmpty()
true
if this map contains no key-value mappings.isEmpty
in interface java.util.Map
isEmpty
in class java.util.AbstractMap
true
if this map contains no key-value mappings.public boolean containsValue(java.lang.Object value)
true
if this map maps one or more keys to the
specified value.containsValue
in interface java.util.Map
containsValue
in class java.util.AbstractMap
value
- value whose presence in this map is to be tested.true
if this map maps one or more keys to the
specified value.public boolean containsKey(java.lang.Object key)
true
if this map contains a mapping for the specified
key.containsKey
in interface java.util.Map
containsKey
in class java.util.AbstractMap
key
- key whose presence in this Map is to be tested.true
if this map contains a mapping for the specified
key.public boolean containsKey(int key)
true
if this map contains a mapping for the specified
key.key
- key whose presence in this Map is to be tested.true
if this map contains a mapping for the specified
key.public java.lang.Object get(java.lang.Object key)
null
if the map contains no mapping for this key. A return
value of null
does not necessarily indicate that the
map contains no mapping for the key; it's also possible that the map
explicitly maps the key to null
. The containsKey
operation may be used to distinguish these two cases.get
in interface java.util.Map
get
in class java.util.AbstractMap
key
- key whose associated value is to be returned.public java.lang.Object get(int key)
null
if the map contains no mapping for this key. A return
value of null
does not necessarily indicate that the
map contains no mapping for the key; it's also possible that the map
explicitly maps the key to null
. The containsKey
operation may be used to distinguish these two cases.key
- key whose associated value is to be returned.public java.lang.Object put(java.lang.Object key, java.lang.Object value)
put
in interface java.util.Map
put
in class java.util.AbstractMap
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.null
if
there was no mapping for key. A null
return can also indicate
that the IntHashMap previously associated null
with the
specified key.public java.lang.Object put(int key, java.lang.Object value)
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.null
if
there was no mapping for key. A null
return can also indicate
that the IntHashMap previously associated null
with the
specified key.public java.lang.Object remove(java.lang.Object key)
remove
in interface java.util.Map
remove
in class java.util.AbstractMap
key
- key whose mapping is to be removed from the map.null
if
there was no mapping for key. A null
return can also indicate
that the map previously associated null
with the specified
key.public java.lang.Object remove(int key)
key
- key whose mapping is to be removed from the map.null
if
there was no mapping for key. A null
return can also indicate
that the map previously associated null
with the specified
key.public void putAll(java.util.Map t)
putAll
in interface java.util.Map
putAll
in class java.util.AbstractMap
t
- Mappings to be stored in this map.public void clear()
clear
in interface java.util.Map
clear
in class java.util.AbstractMap
public IntHashMap clone()
IntHashMap
instance: the keys and
values themselves are not cloned.clone
in class java.util.AbstractMap
public java.util.Set<java.lang.Integer> keySet()
Iterator.remove
,
Set.remove
, removeAll
, retainAll
,
and clear
operations. It does not support the
add
or addAll
operations.keySet
in interface java.util.Map
keySet
in class java.util.AbstractMap
public java.util.Collection values()
Iterator.remove
, Collection.remove
,
removeAll
, retainAll
, and clear
operations. It does not support the add
or
addAll
operations.values
in interface java.util.Map
values
in class java.util.AbstractMap
public java.util.Set<java.util.Map.Entry<java.lang.Integer,java.lang.Object>> entrySet()
Map.Entry
. The
collection is backed by the map, so changes to the map are reflected in
the collection, and vice-versa. The collection supports element removal,
which removes the corresponding mapping from the map, via the
Iterator.remove
, Collection.remove
,
removeAll
, retainAll
, and clear
operations. It does not support the add
or
addAll
operations.entrySet
in interface java.util.Map
entrySet
in class java.util.AbstractMap
Map.Entry
Copyright © 2003-present Jodd Team