Uses of Class
org.apache.commons.collections4.map.AbstractLinkedMap
-
Packages that use AbstractLinkedMap Package Description org.apache.commons.collections4.map -
-
Uses of AbstractLinkedMap in org.apache.commons.collections4.map
Subclasses of AbstractLinkedMap in org.apache.commons.collections4.map Modifier and Type Class Description class
LinkedMap<K,V>
AMap
implementation that maintains the order of the entries.class
LRUMap<K,V>
AMap
implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.Fields in org.apache.commons.collections4.map declared as AbstractLinkedMap Modifier and Type Field Description protected AbstractLinkedMap<K,V>
AbstractLinkedMap.LinkIterator. parent
The parent mapConstructors in org.apache.commons.collections4.map with parameters of type AbstractLinkedMap Constructor Description EntrySetIterator(AbstractLinkedMap<K,V> parent)
KeySetIterator(AbstractLinkedMap<K,?> parent)
LinkIterator(AbstractLinkedMap<K,V> parent)
LinkMapIterator(AbstractLinkedMap<K,V> parent)
ValuesIterator(AbstractLinkedMap<?,V> parent)
-