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

com.stackmob.sdk.util.Pair Maven / Gradle / Ivy

package com.stackmob.sdk.util;

public class Pair {
    private T one;
    private U two;
    public Pair(T one, U two) {
        this.one = one;
        this.two = two;
    }

    public T getFirst() {
        return one;
    }

    public U getSecond() {
        return two;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy