I cant find any sorting function in the java API for vectors.
Collections.sort is only for List<T> and not for Vector<T>.
I don't want to write my own sorting function because I think java should implement this.
I'm looking for something like:
class ClassName implements Comparator<ClassName> ..
ClassName cn = ..;
sort(cn);