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

ai.databand.schema.Pair Maven / Gradle / Ivy

There is a newer version: 1.0.26.1
Show newest version
package ai.databand.schema;

public class Pair {

    private final A left;
    private final B right;

    public Pair(A left, B right) {
        this.left = left;
        this.right = right;
    }

    public A left() {
        return left;
    }

    public B right() {
        return right;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy