I have the list of Arrays of Objects and storing in to the List
Object[] data = [12.0, 0.05, 100.0, 3.0, 5.0, a, cat, 3];
List<Object[]> events = new ArrayList<Object[]>();
events.add(data);
System.out.println(events.toString());
When I am printing I am getting in this format [[Ljava.lang.Object;@23e028a9] , I tried .toString() and other but neither worked.
Please help me to solve this problem to see the correct form in output.