All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.platform.metrics.utils.ObjectUtils Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.utils;

import org.apache.commons.lang3.builder.HashCodeBuilder;

public class ObjectUtils {

    public static int hashCodeFor(Object o1, Object o2) {
        return new HashCodeBuilder(17, 37)
            .append(o1)
            .append(o2)
            .toHashCode();
    }

    public static int hashCodeFor(Object o1, Object o2, Object o3) {
        return new HashCodeBuilder(17, 37)
            .append(o1)
            .append(o2)
            .append(o3)
            .toHashCode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy