Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 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.

share|improve this question
1  
You might want to avoid this step by directly using some kind of SortedMap, so the entries are in natural order of the keys being used. Java's own TreeMap implements SortedMap. – Axel Knauf Jul 24 '11 at 10:41

5 Answers

up vote 93 down vote accepted
List list = new ArrayList(coll);
Collections.sort(list);

As Erel Segal Halevi says below, if coll is already a list, you can skip step one. But that would depend on the internals of TreeBidiMap.

List list;
if (coll instanceof List)
  list = (List)coll;
else
  list = new ArrayList(coll);
share|improve this answer
1  
its been 2 hours i'm looking for this answer.trying to find a cast or convert or parse or whatever method. thank you ! – kommradHomer Jan 24 '12 at 14:56

I think Paul Tomblin's answer may be wasteful in case coll is already a list, because it will create a new list and copy all elements. If coll contains many elemeents, this may take a long time.

My suggestion is:

List list;
if (coll instanceof List)
  list = (List)coll;
else
  list = new ArrayList(coll);
Collections.sort(list);
share|improve this answer

It's also possible to use Guava's Lists utilitary class:

List list = Lists.newArrayList(coll);

Advantages:

  • Internally performs the check mentioned on Erel Segal Halevi answer
  • Avoids boilerplate code when the List specifies the generic type, for example:

List<Double> list = Lists.newArrayList(coll);

Instead of (without checks)

List<Double> list = new ArrayList<Double>(coll);

share|improve this answer
excellent answer – Kim Jong Woo Mar 26 '12 at 10:46

Something like this should work:

List theList = new ArrayList(coll);
share|improve this answer
Collections.sort( new ArrayList( coll ) );

:P

share|improve this answer
Missing a reference to access ArrayList? – Zach Scrivena Feb 24 '09 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. – OscarRyz Feb 24 '09 at 2:26

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.