I apologize if I\'m not super clear with my explanation but I\'ll add to and edit this question for clarity if requested.
I am developing an Android app which receives d
Just to Convert from @ForeignCollectionField to ArrayList you can do that:
@ForeignCollectionField
ArrayList
ArrayList taskFieldsList = new ArrayList(your collection);
hope it's help you.