| Package | Description |
|---|---|
| org.apache.commons.collections4.map |
| Modifier and Type | Class and Description |
|---|---|
class |
FixedSizeMap<K
Decorates another
Map to fix the size, preventing add/remove.
|
class |
FixedSizeSortedMap<K
Decorates another
SortedMap to fix the size blocking add/remove.
|
class |
LRUMap<K
A
Map implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.
|
class |
SingletonMap<K
A
Map implementation that holds a single item and is fixed size.
|