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

dev.gradleplugins.test.fixtures.Pair Maven / Gradle / Ivy

package dev.gradleplugins.test.fixtures;

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 - 2025 Weber Informatics LLC | Privacy Policy