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

io.tiledb.cloud.Pair Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.tiledb.cloud;

public class Pair implements java.io.Serializable {
    private F first;
    private S second;

    private Pair() {}

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

    public F getFirst() {
        return first;
    }

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

    public S getSecond() {
        return second;
    }

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

    /**
     * Returns an empty Pair
     *
     * @return The Pair
     */
    public static Pair empty() {
        return new Pair();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy