AutoParcelAutoParcel is an AutoValue extension that enables Parcelable values generation.Just add implements Parcelable to your @AutoValue annotated models.@AutoValueabstract class Person implements Parcelable { abstract String name(); abstract List
addresses(); abstract Map like