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

com.mongodb.jdbc.Pair Maven / Gradle / Ivy

package com.mongodb.jdbc;

public class Pair {
    private L left;
    private R right;

    public Pair(L left, R right) {
        this.left = left;
        this.right = right;
    }

    public L left() {
        return left;
    }

    public R right() {
        return right;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy