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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

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

Method

booleancontainsKey(Object key)
Checks whether the map contains the specified key.
Objectget(Object key)
Gets the value mapped to the key specified.
booleanisEmpty()
Checks whether the map is currently empty.
MapIteratormapIterator()
Gets an iterator over the map.
Objectput(Object key, Object value)
Puts a key-value mapping into this map.