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

com.github.mertakdut.Pair Maven / Gradle / Ivy

package com.github.mertakdut;

class Pair {
    private F first;
    private S second;

    public Pair(F first, S second) {
        this.first = first;
        this.second = second;
    }

    public F getFirst() {
        return first;
    }

    public S getSecond() {
        return second;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy