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

net.dongliu.commons.collection.Tuple6 Maven / Gradle / Ivy

The newest version!
package net.dongliu.commons.collection;

import java.io.Serializable;

/**
 * Used for join defers
 *
 * @author Dong Liu [email protected]
 */
public class Tuple6 implements Serializable {
    private static final long serialVersionUID = -252226111700025302L;
    private final A _1;
    private final B _2;
    private final C _3;
    private final D _4;
    private final E _5;
    private final F _6;

    public Tuple6(A _1, B _2, C _3, D _4, E _5, F _6) {
        this._1 = _1;
        this._2 = _2;
        this._3 = _3;
        this._4 = _4;
        this._5 = _5;
        this._6 = _6;
    }

    public A _1() {
        return _1;
    }

    public B _2() {
        return _2;
    }

    public C _3() {
        return _3;
    }

    public D _4() {
        return _4;
    }

    public E _5() {
        return _5;
    }

    public F _6() {
        return _6;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy