Example usage for org.apache.commons.collections ListUtils hashCodeForList

List of usage examples for org.apache.commons.collections ListUtils hashCodeForList

Introduction

In this page you can find the example usage for org.apache.commons.collections ListUtils hashCodeForList.

Prototype

public static int hashCodeForList(final Collection list) 

Source Link

Document

Generates a hash code using the algorithm specified in java.util.List#hashCode() .

Usage

From source file:com.hs.mail.imap.message.search.AndKey.java

public int hashCode() {
    return ListUtils.hashCodeForList(keys);
}

From source file:hudson.matrix.AxisList.java

@Override
public int hashCode() {
    return ListUtils.hashCodeForList(this);
}