package agents.anac.y2015.pnegotiator; /** * Created by chad on 2/26/15. */ public class Tuple> implements Comparable> { K key; V value; public Tuple(K key, V value) { this.key = key; this.value = value; } @Override public int compareTo(Tuple t2) { return value.compareTo(t2.value); } }