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

com.aerospike.jdbc.model.Pair Maven / Gradle / Ivy

There is a newer version: 1.9.2
Show newest version
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