I need a collection that behaves something like C++ multimap, but I also need to be able to get elements by a range of keys.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no built-in multimap collection in Java. To solve this you can map to every key a list of values: |
|||
|
|
|
You can look into Google Collections. It has multiple implementations for |
|||||||||
|