I want to clone a Parcel object (not parcelable).
I can't use clone() method since it is protected. I also can't call it using reflection since Parcel class doesn't implement 'clonable'
I tried to perform the solution of issue: Create a copy of parcel object but it does not apply for Parcel type itself - and the reason for that is that 'writeToParcel' is not defined for Parcel type itself. So for the object 'Parcel a', a.writeToParcel(parcel, 0) won't compile.