vote up 0 vote down star

I am using TreeBidiMap from the apache collections library. I want to sort this on the values which are doubles.

My method is to retrieve a Collection view of the values using Collection coll = themap.values(). Which naturally works fine. Main Question: I now want to know how I can convert/cast (not sure which is correct) coll into a List so it can be sorted.

I then intend to iterate over the sorted List object, which should be in order and get the appropriate keys from the TreeBidiMap "themap" using themap.getKey(iterator.next()) where the iterator will be over the list of doubles.

flag

71% accept rate

3 Answers

vote up 4 vote down check
List list = new ArrayList(coll);
Collections.sort(list);
link|flag
vote up 2 vote down
Collections.sort( new ArrayList( coll ) );

:P

link|flag
Missing a reference to access ArrayList? – Zach Scrivena Feb 24 at 2:15
@Zach: mmhh good point. I knew there was a reason for me to mark this as CW. BTW Paul's ans is the one. I don't know why he has only my uv. – Oscar Reyes Feb 24 at 2:26
vote up 0 vote down

Something like this should work:

List theList = new ArrayList(coll);
link|flag

Your Answer

Get an OpenID
or

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