Hi all, I was wondering, how to achieve a multiple sorting in a List?! Is there a sort algorithm in the Java library that takes n-parameters. These parameters would define my sorting order, e.g sort(row2, row4, row1); In case there isn't something like this. Can I achieve this by making the compare(Object1, Object2) recursive? I am thinking here of comparing with ...