public class Pair<X, Y>
A generic data holder for two data types.
private final X
x
private final Y
y
Pair(X x, Y y)
X
getX()
Y
getY()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
X getX()
Get the value of the data with the type one.
Y getY()
Get the value of the data with the type two.