ArrayList of ArrayLists! e.g.
ArrayList<ArrayList> list = new ArrayList<Type>();
ArrayList<Bandaid> bandaidList = new ArrayList<Type>();
ArrayList<Sword> swordList = new ArrayList<Type>();
ArrayList<Shield> shieldList = new ArrayList<Type>();
...
void codeHere(){
...
list.add(bandaidList);
//etc.
}