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

com.blade.kit.Tuple2 Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.kit;

/**
 * Tuple2
 *
 * @author ccqy66
 */
public class Tuple2 {
    private E e;
    private T t;

    public Tuple2(E e, T t) {
        this.e = e;
        this.t = t;
    }

    public E _1() {
        return e;
    }

    public T _2() {
        return t;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy