Is it possible to do the following?
private static ArrayList<integer<integer<String>>> myArrayList;
In other words, create an ArrayList with declared element syntax?
Example:
myArrayList[0][0] = "This is the string.";
If not, is it possible to do such with normal arrays?