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

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

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

public class Tuple3 extends Tuple2 {
    private static final long serialVersionUID = 428626701509026343L;
    public T3 _3;

    protected Tuple3() {
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy