I have the following problem in Android: I store some data as an ArrayList in a Couchbase lite document:
ArrayList<FluxDocReg> list_flux = (ArrayList<FluxDocReg>)doc.getProperty("flux");
if (list_flux == null)
list_flux = new ArrayList<FluxDocReg>();
FluxDocReg flux = new FluxDocReg();
//.....
list_flux.add(flux);
//save 'list_flux' in document
...
so until I have an ArrayList of LinkedHashedMap objects instead of FluxDocReg.
Next, I read the property:
if (documentBD != null && documentBD.getProperty("flux") != null)
{
ArrayList<FluxDocReg> list_flux = ArrayList<FluxDocReg>)documentBD.getProperty("flux");
///*****there are some objects in ArrayList, each of type LinkedHashedMap instead of FluxDocReg
for (int i = 0; i < list_flux.size(); i++)
{
****ERROR**** FluxDocReg flux = (FluxDocReg)list_flux.get(i);
}
}
I get an error when it tries to cast "FluxDocReg flux = (FluxDocReg)list_flux.get(i)"
I know that there are some objects in ArrayList, each of type LinkedHashedMap instead of FluxDocReg...
What did I do wrong and how can I fix it?
Thanks, Catalin
Apparently there is something called "Java Type Erasure" for generics (lists of generics), so I had to come with a workaround. Something like this, involving reflection and conversion to-and-from JSON: