I've created a java dictionary using java.util.Hashtable with 2-tuple of strings as it's keys and int as values.
class pair<e,f>{
public e one;
public f two;
}
I used to above class to initialize a dictionary:
Dictionary<pair<String, String>, Integer> dict = new Hashtable();
Now I'm unable to check whether a key exists in dict, I mean I am unable to pass pair of strings as argument to dict.containsKey() method.