class Pair { Object obj; int value; Pair(Object x, int i) { this.obj = x; this.value = i; } }