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

z11.samplestructs.Pair Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package z11.samplestructs;


public class Pair {
    private F first; //first member of pair
    private S second; //second member of pair

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

    public void setFirst(F first) {
        this.first = first;
    }

    public void setSecond(S second) {
        this.second = second;
    }

    public F getFirst() {
        return first;
    }

    public S getSecond() {
        return second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy