
io.tiledb.cloud.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiledb-cloud-java Show documentation
Show all versions of tiledb-cloud-java Show documentation
The Java client for the TileDB Cloud Service
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