Hi,
you can not read the entire list.
To read the last item uses your code
List list=(List<ODocument>) document.field("AdresList");
System.out.println(list.get(list.size()-1));
while to read the i-th element you can use 
System.out.println(list.get(i));

Regards,
Alessandro

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to orient-database+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to