Java tutorial
//package com.java2s; public class Main { /** * assert two objects whether equals or not? * @param obj1 * the obj1 argument. * @param obj2 * the obj2 argument; * @return * flag . */ private static boolean objectEquals(Object obj1, Object obj2) { if (obj1 == null && obj2 == null) { return true; } if (obj1 == null || obj2 == null) { return false; } return obj1.equals(obj2); } }