Class AbstractHashedMap<K,V>
- Type Parameters:
K
- the type of the keys in this mapV
- the type of the values in this map
- All Implemented Interfaces:
Map<K,
,V> Get<K,
,V> IterableGet<K,
,V> IterableMap<K,
,V> Put<K,
V>
- Direct Known Subclasses:
AbstractLinkedMap
,AbstractReferenceMap
,CaseInsensitiveMap
,HashedMap
This class implements all the features necessary for a subclass hash-based map.
Key-value entries are stored in instances of the HashEntry
class,
which can be overridden and replaced. The iterators can similarly be replaced,
without the need to replace the KeySet, EntrySet and Values view classes.
Overridable methods are provided to change the default hashing behavior, and to change how entries are added to and removed from the map. Hopefully, all you need for unusual subclasses is here.
NOTE: From Commons Collections 3.1 this class extends AbstractMap. This is to provide backwards compatibility for ReferenceMap between v3.0 and v3.1. This extends clause will be removed in v5.0.
- Since:
- 3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,
V>, AbstractMap.SimpleImmutableEntry<K, V> -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clears the map, resetting the size to zero and nullifying references to avoid garbage collection issues.boolean
containsKey
(Object key) Checks whether the map contains the specified key.boolean
containsValue
(Object value) Checks whether the map contains the specified value.entrySet()
Gets the entrySet view of the map.boolean
Compares this map with another.Gets the value mapped to the key specified.int
hashCode()
Gets the standard Map hashCode.boolean
isEmpty()
Checks whether the map is currently empty.keySet()
Gets the keySet view of the map.Gets an iterator over the map.Puts a key-value mapping into this map.void
Puts all the values from the specified map into this map.Removes the specified mapping from this map.int
size()
Gets the size of the map.toString()
Gets the map as a String.values()
Gets the values view of the map.Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Method Details
-
clear
public void clear()Clears the map, resetting the size to zero and nullifying references to avoid garbage collection issues. -
containsKey
Checks whether the map contains the specified key.- Specified by:
containsKey
in interfaceGet<K,
V> - Specified by:
containsKey
in interfaceMap<K,
V> - Overrides:
containsKey
in classAbstractMap<K,
V> - Parameters:
key
- the key to search for- Returns:
- true if the map contains the key
- See Also:
-
containsValue
Checks whether the map contains the specified value.- Specified by:
containsValue
in interfaceGet<K,
V> - Specified by:
containsValue
in interfaceMap<K,
V> - Overrides:
containsValue
in classAbstractMap<K,
V> - Parameters:
value
- the value to search for- Returns:
- true if the map contains the value
- See Also:
-
entrySet
Gets the entrySet view of the map. Changes made to the view affect this map. To simply iterate through the entries, usemapIterator()
. -
equals
Compares this map with another. -
get
Gets the value mapped to the key specified. -
hashCode
public int hashCode()Gets the standard Map hashCode. -
isEmpty
public boolean isEmpty()Checks whether the map is currently empty. -
keySet
Gets the keySet view of the map. Changes made to the view affect this map. To simply iterate through the keys, usemapIterator()
. -
mapIterator
Gets an iterator over the map. Changes made to the iterator affect this map.A MapIterator returns the keys in the map. It also provides convenient methods to get the key and value, and set the value. It avoids the need to create an entrySet/keySet/values object. It also avoids creating the Map.Entry object.
- Specified by:
mapIterator
in interfaceIterableGet<K,
V> - Returns:
- the map iterator
-
put
Puts a key-value mapping into this map. -
putAll
Puts all the values from the specified map into this map.This implementation iterates around the specified map and uses
put(Object, Object)
. -
remove
Removes the specified mapping from this map. -
size
public int size()Gets the size of the map. -
toString
Gets the map as a String.- Overrides:
toString
in classAbstractMap<K,
V> - Returns:
- a string version of the map
-
values
Gets the values view of the map. Changes made to the view affect this map. To simply iterate through the values, usemapIterator()
.
-