I like using this method here:
org.apache.commons.lang.ObjectUtils.equals(Object object1, Object object2)
The only drawback (compared to Google Guava, for instance), is that I cannot static import the method. I.e. this is useless:
import static org.apache.commons.lang.ObjectUtils.equals;
... as my Eclipse compiler will not correctly link that method when writing
equals(obj1, obj2);
The error is:
The method equals(Object) in the type Object is not applicable for the arguments (..., ...)
Why is that? Is my statically imported method not applicable if there is a method with the same name (but not the same signature) in any of the super types? Is this formally specified in the JLS? Or some Eclipse compiler issue?
UPDATE
This doesn't work either:
import static org.apache.commons.lang.ObjectUtils.defaultIfNull;
public class Test {
void test() {
defaultIfNull(null, null);
// ^^ compilation error here
}
void defaultIfNull() {
}
}
javac error message:
Test.java:5: defaultIfNull() in Test cannot be applied to (<nulltype>,<nulltype>)
defaultIfNull(null, null);
^
1 error
ObjectUtils.equals(a, b). This is more of an academic question. I'd like to understand the compiler... – Lukas Eder Oct 25 '11 at 14:37