public int compare(CaseResult lhs, CaseResult rhs) { return lhs.getAge() - rhs.getAge(); }
public int compareTo(CaseResult that) { return this.getFullName().compareTo(that.getFullName()); }