Java Collection Hash hashCode(Collection collection)

Here you can find the source of hashCode(Collection collection)

Description

Calculates the hash code for a given collection including the order of elements

License

Apache License

Parameter

Parameter Description
collection a parameter

Declaration

public static <E> int hashCode(Collection<E> collection) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2011 Danny Kunz//from  w w w. ja  va  2s .com
 * 
 * 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.Collection;
import java.util.Iterator;

public class Main {
    /**
     * Calculates the hash code for a given collection including the order of elements
     * 
     * @param collection
     * @return
     */
    public static <E> int hashCode(Collection<E> collection) {
        final int prime = 31;
        int result = 1;
        if (collection != null) {
            Iterator<E> iterator = collection.iterator();
            while (iterator.hasNext()) {
                E next = iterator.next();
                result = prime * result + (next != null ? next.hashCode() : 0);
            }
        }
        return result;
    }
}

Related

  1. hashCode(Collection c)
  2. hashCode(Collection collection)
  3. hashCodeDeep(Collection collection)
  4. hashCodeUnordered(Collection collection)