I wrote this Java parser library which outputs a set of POJO classes:
- Offer
- Room
- Stream
- Url
- VideoSize
Since I want to use the parsed data in an Android project I am running into a problem: the model classes are not parcelable nor serializable. The latter could be implemented via java.io.Serializable
. Is there a way to implement Parcelable
without copying all fields into new models?