Ciao, potresti usare un , ma per fare ciò la tua classe deve implementare l'interfaccia Serializable (altrimenti verrà sollevata un'eccezione), che presenta alcuni problemi di retrocompatibilità; dalla documentazione:
this interface limits how its implementing classes can change in the future. By implementing Serializable you expose your flexible in-memory implementation details as a rigid binary representation. Simple code changes--like renaming private fields--are not safe when the changed class is serializable.
La stessa documentazione, per questo motivo, consiglia di valutare la seguente alternativa:
JSON is concise, human-readable and efficient. Android includes both a streaming API and a tree API to read and write JSON. Use a binding library like GSON to read and write Java objects directly.