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

shz.core.tuple.Tuple5 Maven / Gradle / Ivy

package shz.core.tuple;

public class Tuple5 extends Tuple4 {
    private static final long serialVersionUID = 901417537309770223L;
    public T5 _5;

    protected Tuple5() {
    }

    protected Tuple5(T1 _1, T2 _2, T3 _3, T4 _4, T5 _5) {
        super(_1, _2, _3, _4);
        this._5 = _5;
    }

    public static  Tuple5 apply(T1 _1, T2 _2, T3 _3, T4 _4, T5 _5) {
        return new Tuple5<>(_1, _2, _3, _4, _5);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy