I have a java collection
Collection<customObject> list = new ArrayList<customObject>();
customObject has an ID field now before display list i want to sort this collection by that id .
Is there any way I could that do that?
|
I have a java collection
customObject has an ID field now before display list i want to sort this collection by that id . Is there any way I could that do that? |
||||
|
|
|
Obviously use Comparator
Additionally, if |
|||||||||||||||||||||
|
|
|
|||
|
|
|
Implement the Comparable interface on your customObject. |
|||
|
|
|
You should implement the example:
Then you can use the Collections classes
|
||||
|
|
|
Use sort. You just have to do this:
(Or use the version below it, as others already said.) |
|||
|
|
|
A slightly different example say if you have a class that doesn't implement Comparable but you still want to sort it on a field or method.
|
|||||
|
|
SortedSet and Comparator. Comparator should honour the id field. |
|||