All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eligible.util.ObjectUtils Maven / Gradle / Ivy

There is a newer version: 1.13.13
Show newest version
package com.eligible.util;

/**
 * Utility methods for Object.
 */
public abstract class ObjectUtils {

    /**
     * Compares two objects for equality.
     * @param a first obj
     * @param b second obj
     * @return true if objects are equal
     */
    public static boolean equals(Object a, Object b) {
        return a == null ? b == null : a.equals(b);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy