public int hashCode()

in tiles-request-api/src/main/java/org/apache/tiles/request/collection/MapEntryArrayValues.java [55:66]


    public int hashCode() {
        int valueHash = 0;
        V[] value = getValue();
        if (value != null) {
            for (int i = 0; i < value.length; i++) {
                valueHash += value[i].hashCode();
            }
        }

        return (this.getKey() == null ? 0 : this.getKey().hashCode())
                ^ valueHash;
    }