How can I see in Java if an Object is an array without using reflection? And how can I iterate through all items without using reflection?
I use Google GWT so I am n
Simply obj instanceof Object[] (tested on JShell).
obj instanceof Object[]