Here you can find the source of safeHashCode(Object... objects)
public static int safeHashCode(Object... objects)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; public class Main { public static int safeHashCode(Object... objects) { return Arrays.hashCode(objects); }/* w w w . j ava 2 s. c om*/ }