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

shz.tuple.Tuple4 Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package shz.tuple;

public class Tuple4 extends Tuple3 {
    private static final long serialVersionUID = 2196815169724056913L;
    public T4 _4;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy