Reverse HashMap klucze i wartości w Javie

To proste pytanie, mam prosty HashMap, którego chcę odwrócić klucze i wartości.

HashMap<Character, String> myHashMap = new HashMap<Character, String>();
myHashMap.put('a', "test one");
myHashMap.put('b', "test two");

i chcę utworzyć nową HashMap, w której umieszczę przeciwieństwa.

HashMap<String, Character> reversedHashMap = new HashMap<String, Character>();
e.g. Keys "test one" & "test two" and values 'a' & 'b'.

questionAnswers(8)

yourAnswerToTheQuestion