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

com.jiuxian.mossrose.util.Tuple Maven / Gradle / Ivy

There is a newer version: 2.4.4-RELEASE
Show newest version
package com.jiuxian.mossrose.util;

import java.io.Serializable;

public class Tuple implements Serializable {

    private final F first;

    private final S second;

    public Tuple(F first, S second) {
        this.first = first;
        this.second = second;
    }

    public F getFirst() {
        return first;
    }

    public S getSecond() {
        return second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy