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

org.komamitsu.fluency.util.Tuple Maven / Gradle / Ivy

The newest version!
package org.komamitsu.fluency.util;

public class Tuple
{
    private final F first;
    private final S second;

    public Tuple(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