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.
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| Constructor and Description |
|---|
LinkedHashMap()
Constructs a new empty
LinkedHashMap instance. |
LinkedHashMap(int initialCapacity)
Constructs a new
LinkedHashMap instance with the specified
capacity. |
LinkedHashMap(int initialCapacity,
float loadFactor)
Constructs a new
LinkedHashMap instance with the specified
capacity and load factor. |
LinkedHashMap(int initialCapacity,
float loadFactor,
boolean accessOrder)
Constructs a new
LinkedHashMap instance with the specified
capacity, load factor and a flag specifying the ordering behavior. |
LinkedHashMap(Map<? extends K,? extends V> map)
Constructs a new
LinkedHashMap instance containing the mappings
from the specified map. |
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all mappings from this hash map, leaving it empty.
|
boolean |
containsValue(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, or
null if the map is empty. |
V |
get(Object key)
Returns the value of the mapping with the specified key.
|
protected boolean |
removeEldestEntry(Map.Entry<K,V> eldest) |
clone, containsKey, entrySet, isEmpty, keySet, put, putAll, remove, size, valuesequals, hashCode, toStringpublic LinkedHashMap()
LinkedHashMap instance.public LinkedHashMap(int initialCapacity)
LinkedHashMap instance with the specified
capacity.initialCapacity - the initial capacity of this map.IllegalArgumentException - when the capacity is less than zero.public LinkedHashMap(int initialCapacity,
float loadFactor)
LinkedHashMap instance with the specified
capacity and load factor.initialCapacity - the initial capacity of this map.loadFactor - the initial load factor.IllegalArgumentException - when the capacity is less than zero or the load factor is
less or equal to zero.public LinkedHashMap(int initialCapacity,
float loadFactor,
boolean accessOrder)
LinkedHashMap instance with the specified
capacity, load factor and a flag specifying the ordering behavior.initialCapacity - the initial capacity of this hash map.loadFactor - the initial load factor.accessOrder - true if the ordering should be done based on the last
access (from least-recently accessed to most-recently
accessed), and false if the ordering should be the
order in which the entries were inserted.IllegalArgumentException - when the capacity is less than zero or the load factor is
less or equal to zero.public Map.Entry<K,V> eldest()
null if the map is empty.public boolean containsValue(Object value)
containsValue in interface Map<K,V>containsValue in class HashMap<K,V>value - the value to search for.true if this map contains the specified value,
false otherwise.public void clear()
HashMapclear in interface Map<K,V>clear in class HashMap<K,V>HashMap.isEmpty(),
HashMap.size