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

com.heroku.sdk.deploy.util.Tuple Maven / Gradle / Ivy

package com.heroku.sdk.deploy.util;

public class Tuple {
    private final A a;
    private final B b;

    public Tuple(A a, B b) {
        this.a = a;
        this.b = b;
    }

    public A getA() {
        return a;
    }

    public B getB() {
        return b;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy