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
5answers
235 views
What should int compareTo() return when the parameter string is null?
It is said that when input parameter is null, compareTo() should throw a NullPointerException. However, I am implementing a class which needs to compare fields with the type of String. These fields ...
1
vote
1answer
49 views
Undocumented String.compareTo(null) NPE?
The following little test throws an NPE:
public class Test {
public static void main(String[] args) {
String a = "a";
String b = null;
...