Here you can find the source of hashCodeOrZero(Object o)
public static int hashCodeOrZero(Object o)
//package com.java2s; public class Main { public static int hashCodeOrZero(Object o) { return o != null ? o.hashCode() : 0; }//from www . j a v a2s .c o m }