Class LinkedHashMap<K,V>
- All Implemented Interfaces:
Serializable,Cloneable,Map<K,V>
public class LinkedHashMap<K,V> extends HashMap<K,V>
Map that guarantees iteration order.
All optional operations are supported.
All elements are permitted as keys or values, including null.
Entries are kept in a doubly-linked list. The iteration order is, by default, the
order in which keys were inserted. Reinserting an already-present key doesn't change the
order. If the three argument constructor is used, and accessOrder is specified as
true, the iteration will be in the order that entries were accessed.
The access order is affected by put, get, and putAll operations,
but not by operations on the collection views.
Note: the implementation of LinkedHashMap is not synchronized.
If one thread of several threads accessing an instance modifies the map
structurally, access to the map needs to be synchronized. For
insertion-ordered instances a structural modification is an operation that
removes or adds an entry. Access-ordered instances also are structurally
modified by put, get, and putAll since these methods
change the order of the entries. Changes in the value of an entry are not structural changes.
The Iterator created by calling the iterator method
may throw a ConcurrentModificationException if the map is structurally
changed while an iterator is used to iterate over the elements. Only the
remove method that is provided by the iterator allows for removal of
elements during iteration. It is not possible to guarantee that this
mechanism works in all cases of unsynchronized concurrent modification. It
should only be used for debugging purposes.
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V> -
Constructor Summary
Constructors Constructor Description LinkedHashMap()Constructs a new emptyLinkedHashMapinstance.LinkedHashMap(int initialCapacity)Constructs a newLinkedHashMapinstance with the specified capacity.LinkedHashMap(int initialCapacity, float loadFactor)Constructs a newLinkedHashMapinstance with the specified capacity and load factor.LinkedHashMap(int initialCapacity, float loadFactor, boolean accessOrder)Constructs a newLinkedHashMapinstance with the specified capacity, load factor and a flag specifying the ordering behavior.LinkedHashMap(Map<? extends K,? extends V> map)Constructs a newLinkedHashMapinstance containing the mappings from the specified map. -
Method Summary
Modifier and Type Method Description voidclear()Removes all mappings from this hash map, leaving it empty.booleancontainsValue(Object value)This override is done for LinkedHashMap performance: iteration is cheaper via LinkedHashMap nxt links.Map.Entry<K,V>eldest()Returns the eldest entry in the map, ornullif the map is empty.Vget(Object key)Returns the value of the mapping with the specified key.protected booleanremoveEldestEntry(Map.Entry<K,V> eldest)Methods inherited from class java.util.HashMap
clone, containsKey, entrySet, isEmpty, keySet, put, putAll, remove, size, valuesMethods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
Constructor Details
-
LinkedHashMap
public LinkedHashMap()Constructs a new emptyLinkedHashMapinstance. -
LinkedHashMap
public LinkedHashMap(int initialCapacity)Constructs a newLinkedHashMapinstance with the specified capacity.- Parameters:
initialCapacity- the initial capacity of this map.- Throws:
IllegalArgumentException- when the capacity is less than zero.
-
LinkedHashMap
public LinkedHashMap(int initialCapacity, float loadFactor)Constructs a newLinkedHashMapinstance with the specified capacity and load factor.- Parameters:
initialCapacity- the initial capacity of this map.loadFactor- the initial load factor.- Throws:
IllegalArgumentException- when the capacity is less than zero or the load factor is less or equal to zero.
-
LinkedHashMap
public LinkedHashMap(int initialCapacity, float loadFactor, boolean accessOrder)Constructs a newLinkedHashMapinstance with the specified capacity, load factor and a flag specifying the ordering behavior.- Parameters:
initialCapacity- the initial capacity of this hash map.loadFactor- the initial load factor.accessOrder-trueif the ordering should be done based on the last access (from least-recently accessed to most-recently accessed), andfalseif the ordering should be the order in which the entries were inserted.- Throws:
IllegalArgumentException- when the capacity is less than zero or the load factor is less or equal to zero.
-
LinkedHashMap
Constructs a newLinkedHashMapinstance containing the mappings from the specified map. The order of the elements is preserved.- Parameters:
map- the mappings to add.
-
-
Method Details
-
eldest
Returns the eldest entry in the map, ornullif the map is empty. -
get
Returns the value of the mapping with the specified key. -
containsValue
This override is done for LinkedHashMap performance: iteration is cheaper via LinkedHashMap nxt links.- Specified by:
containsValuein interfaceMap<K,V>- Overrides:
containsValuein classHashMap<K,V>- Parameters:
value- the value to search for.- Returns:
trueif this map contains the specified value,falseotherwise.
-
clear
public void clear()Description copied from class:HashMapRemoves all mappings from this hash map, leaving it empty. -
removeEldestEntry
-