Class LinkedHashMap<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<K,V>
-
- java.util.LinkedHashMap<K,V>
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<K,V>
public class LinkedHashMap<K,V> extends HashMap<K,V>
LinkedHashMap is an implementation ofMapthat 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
accessOrderis specified astrue, the iteration will be in the order that entries were accessed. The access order is affected byput,get, andputAlloperations, but not by operations on the collection views.Note: the implementation of
LinkedHashMapis 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 byput,get, andputAllsince these methods change the order of the entries. Changes in the value of an entry are not structural changes.The
Iteratorcreated by calling theiteratormethod may throw aConcurrentModificationExceptionif the map is structurally changed while an iterator is used to iterate over the elements. Only theremovemethod 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
All Methods Instance Methods Concrete Methods 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, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
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.
-
-
Method Detail
-
eldest
public Map.Entry<K,V> eldest()
Returns the eldest entry in the map, ornullif the map is empty.
-
containsValue
public boolean containsValue(Object value)
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.- Specified by:
clearin interfaceMap<K,V>- Overrides:
clearin classHashMap<K,V>- See Also:
HashMap.isEmpty(),HashMap.size
-
-