Java tutorial
//package com.java2s; //License from project: Apache License public class Main { /** * Hash code of object. * * @param object object * @return hash code or 0 if object is null */ public static int objectHashCode(Object object) { return object == null ? 0 : object.hashCode(); } }