![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.util.EqualsHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: EqualsHelper.java 4582 2004-09-25 11:22:20Z oneovthafew $
package org.hibernate.util;
/**
* @author Gavin King
*/
public final class EqualsHelper {
public static boolean equals(Object x, Object y) {
return x==y || ( x!=null && y!=null && x.equals(y) );
}
private EqualsHelper() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy