I have two object arrays like so:
Object[] array1 = {0, 1, 2, 3}; Object[] array2 = {0, 1, 2, 3};
I would like to know if the arrays are eq
array1.equals(array2) should give you what you are looking for.
array1.equals(array2)