Java Object Hash safeHashCode(Object... objects)

Here you can find the source of safeHashCode(Object... objects)

Description

safe Hash Code

License

Open Source License

Declaration

public static int safeHashCode(Object... objects) 

Method Source Code


//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*/
}

Related

  1. hashCode(Object object)
  2. hashCode(Object... args)
  3. hashCode(Object... objects)
  4. makeHashCode(Object... objects)
  5. safeHashCode(Object o)