is it possible to have multiple values for a single key in the java dictionary class??
feedback
|
|
First, regarding the dictionary class: That class is considered obselete, the documentation recommends using Map instead. This kind of collection you are seeking is called a multimap. You could implement one yourself with a list, but that is tedious. You may want to use a MultiMap from either Apache Collections or from the Google Collections. While I am personally a fan of the apache collections, they do not really support generics, so a Google multimap may be safer. | |||
|
feedback
|
|
You should take a look at the MultiMap class from the apache commons collections | |||
|
feedback
|
|
You can use a regular
Or you can use
(Unfortunately, | |||||||||||
feedback
|