Is there a way to swap two keys in a map in Java?
ex. for list there is Collections.swap(ArrayList,1,2);
|
|
|
You can use this one liner:
|
|||
|
|
If you need to handle boundary cases, like one of the keys not actually being in the map, you can do something like this:
Otherwise, use the on-liner in Abdullah Jibaly's answer. |
||||
|
|