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

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

Introduction

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

The text is from its open source code.

Constructor

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(Map map, boolean scanUntilRemovable)
Constructor copying elements from another map.
LRUMap(int maxSize)
Constructs a new, empty map with the specified maximum size.
LRUMap(Map map)
Constructor copying elements from another map.