I have written only necessary information to make you understand the error. I have a multiple arraylist(specification) i.e.
speci={{node,node},{node,node}}
The node is an object that contains an int and a boolean i.e.
node= int value , boolean explored
I wanted to access the int of the node object through following way,
System.out.println(speci.get(0).get(0).value); // IDE is not accepting it, suggest a way
My IDE(NetBeans8.1) is not accepting, saying cannot find symbol value. How can I access that value using ArrayList? TIA :-)