Is it possible to have more than one data type within an array list, or even two of the same data type such as:
ArrayList<Integer,Integer,Integer> triple = new ArrayList<Integer,Integer,Integer>();
I notice this causes an error but I'm just wondering if there is indeed a way to do this?