Example usage for Java org.apache.commons.collections.map MultiKeyMap fields, constructors, methods, implement or subclass
The text is from its open source code.
MultiKeyMap() Constructs a new MultiKeyMap that decorates a HashedMap . |
void | clear() |
boolean | containsKey(Object key1, Object key2) Checks whether the map contains the specified multi-key. |
MultiKeyMap | decorate(AbstractHashedMap map) Decorates the specified map to add the MultiKeyMap API and fast query. |
Object | get(Object key1, Object key2) Gets the value mapped to the specified multi-key. |
Object | get(Object key) |
Object | get(Object key1, Object key2, Object key3, Object key4) Gets the value mapped to the specified multi-key. |
Object | get(Object key1, Object key2, Object key3) Gets the value mapped to the specified multi-key. |
boolean | isEmpty() |
Set | keySet() |
MapIterator | mapIterator() |
Object | put(Object key1, Object key2, Object key3, Object key4, Object value) Stores the value against the specified multi-key. |
Object | put(Object key1, Object key2, Object value) Stores the value against the specified multi-key. |
Object | put(Object key, Object value) Puts the key and value into the map, where the key must be a non-null MultiKey object. |
Object | put(Object key1, Object key2, Object key3, Object value) Stores the value against the specified multi-key. |
int | size() |
Collection | values() |