public class NegatedObjectComparison { boolean a(Object a, Object b) { return !a.equals(b); } }