public class AntiCollisionHashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
Constructor and Description |
---|
AntiCollisionHashMap()
Deprecated.
Constructs an empty SafelyHashMap with the default initial
capacity (16) and the default load factor (0.75).
|
AntiCollisionHashMap(int initialCapacity)
Deprecated.
Constructs an empty SafelyHashMap with the specified initial
capacity and the default load factor (0.75).
|
AntiCollisionHashMap(int initialCapacity,
float loadFactor)
Deprecated.
|
AntiCollisionHashMap(Map<? extends K,? extends V> m)
Deprecated.
Constructs a new SafelyHashMap with the same mappings as the
specified Map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Deprecated.
Removes all of the mappings from this map.
|
Object |
clone()
Deprecated.
Returns a shallow copy of this SafelyHashMap instance: the keys
and values themselves are not cloned.
|
boolean |
containsKey(Object key)
Deprecated.
Returns true if this map contains a mapping for the specified
key.
|
boolean |
containsValue(Object value)
Deprecated.
Returns true if this map maps one or more keys to the specified
value.
|
Set<Map.Entry<K,V>> |
entrySet()
Deprecated.
Returns a
Set view of the mappings contained in this map. |
V |
get(Object key)
Deprecated.
Returns the value to which the specified key is mapped, or
null
if this map contains no mapping for the key. |
boolean |
isEmpty()
Deprecated.
Returns true if this map contains no key-value mappings.
|
Set<K> |
keySet()
Deprecated.
Returns a
Set view of the keys contained in this map. |
V |
put(K key,
V value)
Deprecated.
Associates the specified value with the specified key in this map.
|
void |
putAll(Map<? extends K,? extends V> m)
Deprecated.
Copies all of the mappings from the specified map to this map.
|
V |
remove(Object key)
Deprecated.
Removes the mapping for the specified key from this map if present.
|
int |
size()
Deprecated.
Returns the number of key-value mappings in this map.
|
Collection<V> |
values()
Deprecated.
Returns a
Collection view of the values contained in this map. |
equals, hashCode, toString
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
public AntiCollisionHashMap(int initialCapacity, float loadFactor)
public AntiCollisionHashMap(int initialCapacity)
initialCapacity
- the initial capacity.IllegalArgumentException
- if the initial capacity is negative.public AntiCollisionHashMap()
public AntiCollisionHashMap(Map<? extends K,? extends V> m)
m
- the map whose mappings are to be placed in this mapNullPointerException
- if the specified map is nullpublic int size()
public boolean isEmpty()
public V get(Object key)
null
if this map contains no mapping for the key.
More formally, if this map contains a mapping from a key k
to a
value v
such that (key==null ? k==null :
key.equals(k))
, then this method returns v
; otherwise it returns
null
. (There can be at most one such mapping.)
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 Map<K,V>
get
in class AbstractMap<K,V>
put(Object, Object)
public boolean containsKey(Object key)
containsKey
in interface Map<K,V>
containsKey
in class AbstractMap<K,V>
key
- The key whose presence in this map is to be testedpublic V put(K key, V value)
put
in interface Map<K,V>
put
in class AbstractMap<K,V>
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keypublic void putAll(Map<? extends K,? extends V> m)
putAll
in interface Map<K,V>
putAll
in class AbstractMap<K,V>
m
- mappings to be stored in this mapNullPointerException
- if the specified map is nullpublic V remove(Object key)
remove
in interface Map<K,V>
remove
in class AbstractMap<K,V>
key
- key whose mapping is to be removed from the mappublic void clear()
public boolean containsValue(Object value)
containsValue
in interface Map<K,V>
containsValue
in class AbstractMap<K,V>
value
- value whose presence in this map is to be testedpublic Object clone()
clone
in class AbstractMap<K,V>
public Set<K> keySet()
Set
view of the keys contained in this map. The set is
backed by the map, so changes to the map are reflected in the set, and
vice-versa. If the map is modified while an iteration over the set is in
progress (except through the iterator's own remove operation),
the results of the iteration are undefined. The set supports element
removal, which removes the corresponding mapping from the map, via the
Iterator.remove, Set.remove, removeAll,
retainAll, and clear operations. It does not support
the add or addAll operations.public Collection<V> values()
Collection
view of the values contained in this map.
The collection is backed by the map, so changes to the map are reflected
in the collection, and vice-versa. If the map is modified while an
iteration over the collection is in progress (except through the
iterator's own remove operation), the results of the iteration
are undefined. 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.public Set<Map.Entry<K,V>> entrySet()
Set
view of the mappings contained in this map. The set
is backed by the map, so changes to the map are reflected in the set, and
vice-versa. If the map is modified while an iteration over the set is in
progress (except through the iterator's own remove operation, or
through the setValue operation on a map entry returned by the
iterator) the results of the iteration are undefined. The set supports
element removal, which removes the corresponding mapping from the map,
via the Iterator.remove, Set.remove, removeAll
, retainAll and clear operations. It does not support
the add or addAll operations.Copyright © 2012–2022 Alibaba Group. All rights reserved.