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

pascal.taie.util.Hashes Maven / Gradle / Ivy

The newest version!
/*
 * Tai-e: A Static Analysis Framework for Java
 *
 * Copyright (C) 2022 Tian Tan 
 * Copyright (C) 2022 Yue Li 
 *
 * This file is part of Tai-e.
 *
 * Tai-e is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tai-e is distributed in the hope that it will be useful,but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Tai-e. If not, see .
 */

package pascal.taie.util;

import java.util.Objects;

/**
 * Static utility methods for computing hash code.
 * Avoids array creation of Objects.hash().
 */
public final class Hashes {

    private Hashes() {
    }

    /**
     * @return hash code of two objects.
     * @throws NullPointerException if any parameter is null
     */
    public static int hash(Object o1, Object o2) {
        return o1.hashCode() * 31 + o2.hashCode();
    }

    /**
     * @return hash code of two objects, with null check.
     */
    public static int safeHash(Object o1, Object o2) {
        return Objects.hashCode(o1) * 31 + Objects.hashCode(o2);
    }

    /**
     * @return hash code of three objects.
     * @throws NullPointerException if any parameter is null
     */
    public static int hash(Object o1, Object o2, Object o3) {
        int result = o1.hashCode();
        result = 31 * result + o2.hashCode();
        result = 31 * result + o3.hashCode();
        return result;
    }

    /**
     * @return hash code of four objects, with null check.
     */
    public static int safeHash(Object o1, Object o2, Object o3) {
        int result = Objects.hashCode(o1);
        result = 31 * result + Objects.hashCode(o2);
        result = 31 * result + Objects.hashCode(o3);
        return result;
    }

    /**
     * @return hash code of four objects.
     * @throws NullPointerException if any parameter is null
     */
    public static int hash(Object o1, Object o2, Object o3, Object o4) {
        int result = o1.hashCode();
        result = 31 * result + o2.hashCode();
        result = 31 * result + o3.hashCode();
        result = 31 * result + o4.hashCode();
        return result;
    }

    /**
     * @return hash code of four objects, with null check.
     */
    public static int safeHash(Object o1, Object o2, Object o3, Object o4) {
        int result = Objects.hashCode(o1);
        result = 31 * result + Objects.hashCode(o2);
        result = 31 * result + Objects.hashCode(o3);
        result = 31 * result + Objects.hashCode(o4);
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy