Java org.apache.commons.collections4.map LRUMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections4.map LRUMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections4.map LRUMap.

The text is from its open source code.

Constructor

LRUMap(final int maxSize)
Constructs a new, empty map with the specified maximum size.
LRUMap(final Map map)
Constructor copying elements from another map.

Method

Vget(final Object key)
Gets the value mapped to the key specified.
MapIteratormapIterator()
Obtains a MapIterator over the map.
Vput(K key, V value)
Associates the specified value with the specified key in this map (optional operation).
voidputAll(Map m)
Copies all of the mappings from the specified map to this map (optional operation).