com.aerospike.jdbc.model.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aerospike-jdbc Show documentation
Show all versions of aerospike-jdbc Show documentation
A JDBC driver for the Aerospike database
package com.aerospike.jdbc.model;
public class Pair {
private final L left;
private final R right;
public Pair(L left, R right) {
this.left = left;
this.right = right;
}
public static Pair of(L left, R right) {
return new Pair<>(left, right);
}
public L getLeft() {
return left;
}
public R getRight() {
return right;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy