com.eligible.util.ObjectUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eligible-java Show documentation
Show all versions of eligible-java Show documentation
Java bindings for Eligible APIs (https://eligible.com).
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