Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using this code to convert Set to List

Map<String, List> mainMap = new HashMap<String, List>();

for(int i=0; i<something.size(); i++){
  Set set = getSet(...); //return different result each time
  List listOfNames = new ArrayList(set);
  mainMap.put(differentKeyName,listOfNames);
}

I want to avoid creating new list in loop.

share|improve this question
I know a way to convert set to list as in Q. I want to avoind creating new list each time in loop. – Imran Tariq Jan 17 '12 at 9:46
1  
Why can't you just add the set to mainList? Why do you need to convert the Set into a List? – DagR Jan 17 '12 at 9:46
Is it your intention to create a List<List<?>> – Hiery Nomus Jan 17 '12 at 9:48

2 Answers

up vote 41 down vote accepted

You can use the List.addAll() method. It accepts a Collection as an argument, and your set is a Collection.

mainList.addAll(set);

EDIT: as respond to the edit of the question.
It is easy to see that if you want to have a Map with Lists as values, in order to have k different values, you need to create k different lists.
Thus: You cannot avoid creating these lists at all, the lists will have to be created.

Possible work around:
Declare your Map as a Map<String,Set> or Map<String,Collection> instead, and just insert your set.

share|improve this answer
sorry it was mainMap not list. see question – Imran Tariq Jan 17 '12 at 9:51
@imrantariq: is differentKeyName changing every iteration? Do you actually want something.size() different possible values in your maps? It is easy to see that a map with k lists as values needs to create at least k lists. – amit Jan 17 '12 at 9:55
yes key will change on each iteration. – Imran Tariq Jan 17 '12 at 9:58
@imrantariq: and you want a different list for each key I assume? – amit Jan 17 '12 at 10:00
yes getset() will be different each time.getSet(); – Imran Tariq Jan 17 '12 at 10:03
show 1 more comment

I would do :

Map<String, Collection> mainMap = new HashMap<String, Collection>();

for(int i=0; i<something.size(); i++){
  Set set = getSet(...); //return different result each time
  mainMap.put(differentKeyName,set);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.