I've been hunting around for a way to do this and it is driving me mad!
What I'm trying to do is as follows:
I have a HashMap:
qualifiedCompetitors = new HashMap<String, List<String>>();
The values I'm assigning to the hashmap are:
String[] events = {"Helicopter", "Amphibious",
"4x4", "Fire Engine"};
String[][] competitors =
{
{"Greg", "Will", "Fleur", "Bill", "Bella", "Sally", "Olive", "Sal", "Dora", "Chas"},
{"Yuri", "Abe", "Tim", "Fleur", "Bonnie", "Vera", "Ed", "Dan", "Jill", "Rose", "Zoe"},
{"Tim", "Fleur", "Will", "Bill", "Bella", "Dan", "Jill", "Rose", "Greg", "Abe", "Sally", "Yuri", "Olive", "Sal", "Jim"},
{"Jill", "Rose", "Greg", "Abe", "Bonnie", "Vera", "Ed", "Zoe", "Ben", "Freda", "Chuck", "Fred"}
};
the key sting is the name of an event and the List is a list of competitors. I want to build a new list of all the competitors.
So I've tried various things like:
ListOfAllqualifiedCompetitors = new ArrayList(qualifiedCompetitors.values());
and then iterating through the hashmap:
Collection allCompetitors = qualifiedCompetitors.values();
System.out.println("Values of Collection created from Hashtable are :");
//iterate through the collection
Iterator itr = allDrivers.iterator();
while(itr.hasNext())
System.out.println(itr.next());
To see what vales I get, which is fine, but I cannot then add them a new list? I know I'm missing something obvious any suggestions?