Tagged Questions
5
votes
5answers
6k views
How to simplify a null-safe compareTo() implementation?
I'm implementing compareTo() method for a simple class such as this (to be able to use Collections.sort() and other goodies offered by the Java platform):
public class Metadata implements ...
4
votes
1answer
162 views
Problem with CompareTo
I am trying to implement a sorted list. I have created the class I want to have stored in the list, but for some reason when I try and run the sort the sort method I get an exception thrown. It ...
2
votes
1answer
251 views
Comparing generic fields
I have some generic types, like the following:
public struct Tuple<T1, T2> { ... }
public struct Tuple<T1, T2, T3> { ... }
etc.
These should in theory be able to compare themselves ...