Package org.apache.cocoon.pipeline.util

Examples of org.apache.cocoon.pipeline.util.MurmurHashCodeBuilder.toHashCode()


    public int hashCode() {
        MurmurHashCodeBuilder hashCodeBuilder = new MurmurHashCodeBuilder();
        for (Entry<String, String> parameterEntry : this.parameters.entrySet()) {
            hashCodeBuilder.append(parameterEntry.getKey()).append(parameterEntry.getValue());
        }
        return hashCodeBuilder.toHashCode();
    }

    /**
     * {@inheritDoc}
     *
 
View Full Code Here


        for (CacheKey cacheKey : this.cacheKeys) {
            murmurHashCodeBuilder.append(cacheKey.hashCode());
        }

        return murmurHashCodeBuilder.toHashCode();
    }

    /**
     * {@inheritDoc}
     *
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.