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

com.alibaba.hologres.client.utils.Tuple3 Maven / Gradle / Ivy

There is a newer version: 2.5.5
Show newest version
/*
 * Copyright (c) 2022. Alibaba Group Holding Limited
 */

package com.alibaba.hologres.client.utils;

import java.util.Objects;

/**
 * 元组.
 *
 * @param 
 * @param 
 * @param 
 */
public class Tuple3 {
    public L l;
    public M m;
    public R r;

    public Tuple3(L l, M m, R r) {
        this.l = l;
        this.m = m;
        this.r = r;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Tuple3 tuple = (Tuple3) o;
        return Objects.equals(l, tuple.l) &&
            Objects.equals(m, tuple.m) &&
            Objects.equals(r, tuple.r);
    }

    @Override
    public int hashCode() {
        return Objects.hash(l, m, r);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy