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

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

Introduction

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

The text is from its open source code.

Constructor

MultiKeyMap()
Constructs a new MultiKeyMap that decorates a HashedMap.

Method

voidclear()
booleancontainsKey(Object key1, Object key2)
Checks whether the map contains the specified multi-key.
MultiKeyMapdecorate(AbstractHashedMap map)
Decorates the specified map to add the MultiKeyMap API and fast query.
Objectget(Object key1, Object key2)
Gets the value mapped to the specified multi-key.
Objectget(Object key)
Objectget(Object key1, Object key2, Object key3, Object key4)
Gets the value mapped to the specified multi-key.
Objectget(Object key1, Object key2, Object key3)
Gets the value mapped to the specified multi-key.
booleanisEmpty()
SetkeySet()
MapIteratormapIterator()
Objectput(Object key1, Object key2, Object key3, Object key4, Object value)
Stores the value against the specified multi-key.
Objectput(Object key1, Object key2, Object value)
Stores the value against the specified multi-key.
Objectput(Object key, Object value)
Puts the key and value into the map, where the key must be a non-null MultiKey object.
Objectput(Object key1, Object key2, Object key3, Object value)
Stores the value against the specified multi-key.
intsize()
Collectionvalues()