I have a list of objects of type A, and I have to order it for a field of A, which is of type String.
public class A{
public String field1;
public Integer field2;
...
}
If I had to order for the int field would have done so:
Collections.sort(listOfA, new Comparator<A>() {
public int compare(A p1, A p2) {
return p1.field2 - p2.field2);
}
});
But unfortunately need to order by the field of type String.
How can I do this?
compareTomethod is in general dangerous because of integer overflows. UseInts.comparefrom Google's Guava instead. – Roland Illig Jul 31 '11 at 14:34>=and<– Matt Ball Jul 31 '11 at 14:42<=>you have to spell out the operators and the result explicitly. I find it easier to just writereturn Ints.compare(a, b). – Roland Illig Jul 31 '11 at 20:44