I have an Object array, made up of an array of other objects. How can I access the original integer elements of this array? e.g. int one = 1; int two = 2; Object[] myarray1 = {one,one,one,one}; Object[] myarray2 = {two,two,two,two}; Object[][] allArrays = {myarray1,myarray2}; Can I extract the original integers directly via some reference to allArrays?? i.e. int number = ...