
org.komamitsu.fluency.util.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluency Show documentation
Show all versions of fluency Show documentation
Yet another fluent logger
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