Java org.apache.commons.lang IntHashMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang IntHashMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang IntHashMap.

The text is from its open source code.

Constructor

IntHashMap(int initialCapacity)

Constructs a new, empty hashtable with the specified initial capacity and default load factor, which is 0.75.

IntHashMap()

Constructs a new, empty hashtable with a default capacity and load factor, which is 20 and 0.75 respectively.

Method

Objectget(int key)

Returns the value to which the specified key is mapped in this map.

Objectput(int key, Object value)

Maps the specified key to the specified value in this hashtable.