public class LRUMap extends AbstractLinkedMap implements BoundedMap, java.io.Serializable, java.lang.Cloneable
Map
implementation with a fixed maximum size which removes
the least recently used entry if an entry is added when full.
The least recently used algorithm works on the get and put operations only. Iteration of any kind, including setting the value by iteration, does not change the order. Queries such as containsKey and containsValue or access via views also do not change the order.
The map implements OrderedMap
and entries may be queried using
the bidirectional OrderedMapIterator
. The order returned is
least recently used to most recently used. Iterators from map views can
also be cast to OrderedIterator
if required.
All the available iterators can be reset back to the start by casting to
ResettableIterator
and calling reset()
.
Note that LRUMap is not synchronized and is not thread-safe.
If you wish to use this map from multiple threads concurrently, you must use
appropriate synchronization. The simplest approach is to wrap this map
using Collections.synchronizedMap(Map)
. This class may throw
NullPointerException
's when accessed by concurrent threads.
Constructor and Description |
---|
LRUMap()
Constructs a new empty map with a maximum size of 100.
|
LRUMap(int maxSize)
Constructs a new, empty map with the specified maximum size.
|
LRUMap(int maxSize,
boolean scanUntilRemovable)
Constructs a new, empty map with the specified maximum size.
|
LRUMap(int maxSize,
float loadFactor)
Constructs a new, empty map with the specified initial capacity and
load factor.
|
LRUMap(int maxSize,
float loadFactor,
boolean scanUntilRemovable)
Constructs a new, empty map with the specified initial capacity and
load factor.
|
LRUMap(java.util.Map map)
Constructor copying elements from another map.
|
LRUMap(java.util.Map map,
boolean scanUntilRemovable)
Constructor copying elements from another map.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Clones the map without cloning the keys or values.
|
java.lang.Object |
get(java.lang.Object key)
Gets the value mapped to the key specified.
|
boolean |
isFull()
Returns true if this map is full and no new mappings can be added.
|
boolean |
isScanUntilRemovable()
Whether this LRUMap will scan until a removable entry is found when the
map is full.
|
int |
maxSize()
Gets the maximum size of the map (the bound).
|
clear, containsValue, firstKey, lastKey, mapIterator, nextKey, orderedMapIterator, previousKey
public LRUMap()
public LRUMap(int maxSize)
maxSize
- the maximum size of the mapjava.lang.IllegalArgumentException
- if the maximum size is less than onepublic LRUMap(int maxSize, boolean scanUntilRemovable)
maxSize
- the maximum size of the mapscanUntilRemovable
- scan until a removeable entry is found, default falsejava.lang.IllegalArgumentException
- if the maximum size is less than onepublic LRUMap(int maxSize, float loadFactor)
maxSize
- the maximum size of the map, -1 for no limit,loadFactor
- the load factorjava.lang.IllegalArgumentException
- if the maximum size is less than onejava.lang.IllegalArgumentException
- if the load factor is less than zeropublic LRUMap(int maxSize, float loadFactor, boolean scanUntilRemovable)
maxSize
- the maximum size of the map, -1 for no limit,loadFactor
- the load factorscanUntilRemovable
- scan until a removeable entry is found, default falsejava.lang.IllegalArgumentException
- if the maximum size is less than onejava.lang.IllegalArgumentException
- if the load factor is less than zeropublic LRUMap(java.util.Map map)
The maximum size is set from the map's size.
map
- the map to copyjava.lang.NullPointerException
- if the map is nulljava.lang.IllegalArgumentException
- if the map is emptypublic LRUMap(java.util.Map map, boolean scanUntilRemovable)
map
- the map to copyscanUntilRemovable
- scan until a removeable entry is found, default falsejava.lang.NullPointerException
- if the map is nulljava.lang.IllegalArgumentException
- if the map is emptypublic java.lang.Object get(java.lang.Object key)
This operation changes the position of the key in the map to the most recently used position (first).
get
in interface java.util.Map
get
in class AbstractHashedMap
key
- the keypublic boolean isFull()
isFull
in interface BoundedMap
true
if the map is fullpublic int maxSize()
maxSize
in interface BoundedMap
public boolean isScanUntilRemovable()
public java.lang.Object clone()
Copyright © 2010 - 2020 Adobe. All Rights Reserved