Uses of Interface
org.apache.commons.collections4.BoundedMap
Package
Description
-
Uses of BoundedMap in org.apache.commons.collections4.map
Modifier and TypeClassDescriptionclass
FixedSizeMap<K,
V> Decorates anotherMap
to fix the size, preventing add/remove.class
FixedSizeSortedMap<K,
V> Decorates anotherSortedMap
to fix the size blocking add/remove.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.class
SingletonMap<K,
V> AMap
implementation that holds a single item and is fixed size.