I want to have the following data structure to store a word with its multiple IDs (int), but I don't know how to put the key-value pair into the following variable "myWord"
Map<String, Set<Integer>> myWord = new HashMap<String, Set<Integer>>();
myWord.put("word1", how to add the ID to the Set here?)
thanks