android - How to retrieve object elements from a list -
i trying retrieve data couple of parse tables using parse cloud code.
parsecloud.callfunctioninbackground("getdata", parameters, new functioncallback<list>() { @override public void done(list results, parseexception e) { if (e == null) { (parseobject country : results) { } } } });
the list results
returns data tables included in cloud code. don't know how access them.
here data arraylist
retrieves:
[{startup=com.parse.parseobject@1480b86a, resolvedrelations= {advisors=[com.parse.parseobject@3efb015b, com.parse.parseobject@32ab7df8, com.parse.parseobject@393662d1], activesyndicate= {investors=[com.parse.parseobject@2ce9f136, com.parse.parseobject@2cde5837, com.parse.parseobject@b1681a4, com.parse.parseobject@3ced5b0d, com.parse.parseobject@3bdbeac2]}, images=[com.parse.parseobject@123640d3, com.parse.parseobject@3f0c1410], founders=[com.parse.parseobject@1aa19b09, com.parse.parseobject@601f10e, com.parse.parseobject@251a172f], tags=[com.parse.parseobject@1c86613c, com.parse.parseobject@73fdec5, com.parse.parseobject@1d70101a, com.parse.parseobject@3bbaf74b, com.parse.parseobject@34f65528, com.parse.parseobject@1fc4a241, com.parse.parseobject@2f6f13e6]}}
the arraylist
returns objects, need parseobject
. please.
Comments
Post a Comment