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

org.unix4j.util.EqualsUtil Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.util;

/**
 * Utility class with static methods useful to implement {@code equals(Object)}
 * methods.
 */
public class EqualsUtil {

	public static boolean equalObjects(Object o1, Object o2) {
		return (o1 == o2) || (o1 != null && o1.equals(o2));
	}
	//no instances
	private EqualsUtil() {
		super();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy