How to convert a Collection to List?

前端 未结 10 536
不知归路
不知归路 2020-12-07 09:04

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

10条回答
  •  太阳男子
    2020-12-07 09:24

    Here is a sub-optimal solution as a one-liner:

    Collections.list(Collections.enumeration(coll));
    

提交回复
热议问题