Java org.apache.commons.collections.map LinkedMap fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.collections.map.LinkedMap has subclasses.
Click this link to see all its subclasses.

Constructor

LinkedMap(int initialCapacity)
Constructs a new, empty map with the specified initial capacity.
LinkedMap(Map map)
Constructor copying elements from another map.
LinkedMap()
Constructs a new empty map with default size and load factor.

Method

ListasList()
Gets an unmodifiable List view of the keys.
booleancontainsKey(Object key)
Checks whether the map contains the specified key.
ObjectfirstKey()
Gets the first key in the map, which is the most recently inserted.
Objectget(int index)
Gets the key at the specified index.
ObjectgetValue(int index)
Gets the value at the specified index.
booleanisEmpty()
Checks whether the map is currently empty.
SetkeySet()
Gets the keySet view of the map.
ObjectlastKey()
Gets the last key in the map, which is the first inserted.
ObjectnextKey(Object key)
Gets the next key in sequence.
Objectput(Object key, Object value)
Puts a key-value mapping into this map.
voidputAll(Map map)
Puts all the values from the specified map into this map.
Objectremove(int index)
Removes the element at the specified index.
intsize()
Gets the size of the map.
Collectionvalues()
Gets the values view of the map.