I want to iterate over a treeMap, and for all 'key's which have a particular value, I want them to be added to a new TreeMap. How can i do this? Code samples would be prefered.
|
|
|||
|
|
|
or:
or:
|
|||
|
|
|
|
Assuming type TreeMap<String,Integer> :
(key and Value types can be any class of course) |
||
|
|
Using Google Collections, assuming K is your key type:
You can use |
||
|
|
