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

com.mayabot.nlp.common.Pair Maven / Gradle / Ivy

package com.mayabot.nlp.common;

public final class Pair {

    public T first;
    public R second;

    public Pair(T first, R second) {
        this.first = first;
        this.second = second;
    }

    @Override
    public String toString() {
        return "(" + first + ", " + second + ')';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy