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

com.ptsmods.mysqlw.Pair Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.ptsmods.mysqlw;

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

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

    public L getLeft() {
        return left;
    }

    public R getRight() {
        return right;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy