Java Array Hash Code hashCode(byte[] obj)

Here you can find the source of hashCode(byte[] obj)

Description

hash Code

License

Apache License

Declaration

public static int hashCode(byte[] obj) 

Method Source Code

//package com.java2s;
/****************************************************************************
 * Copyright 2009-2014 Jean-Philippe Gravel, P. Eng. CSDP
 * //www.j a  va2 s  . c  o m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ***************************************************************************/

import java.util.Arrays;

public class Main {
    public static int hashCode(byte[] obj) {
        if (obj == null)
            return 0;
        return Arrays.hashCode(obj);
    }

    public static int hashCode(Object obj) {
        if (obj == null)
            return 0;
        return obj.hashCode();
    }
}

Related

  1. byteArrayHashCode(final byte[] array)
  2. calculateHash(byte[] data)
  3. deepHash(Object[] t)
  4. deepHashCode(double[][] matrix)
  5. hashCode(byte[] bytes)
  6. hashCode(final Object[] array1)
  7. hashCode(Map a)
  8. hashCode(Object array)
  9. hashCode(Object array)