public class Pair<A,B> extends java.lang.Object
private A
first
private B
second
Pair(A first, B second)
A
getFirst()
B
getSecond()
static <A,B>Pair<A,B>
with(A first, B second)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
private final A first
private final B second
public static <A,B> Pair<A,B> with(A first, B second)
public A getFirst()
public B getSecond()