What I want is to do a data binding as follows:
(<<Integer>, <Integer>, ArrayList<Integer>)
I tried to create a HashMap<Integer,HashMap<Integer,ArrayList<Integer>>>
the problem is that I forgot that the keys have to be unique and I need to have equal values sometimes.
Ex: (1,1, {1,2,3,4}) (1.2, {1.3})
What is the best way to aggregate this data?