Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はwriteToParcelメソッドを書いていますが、私のモデルにはEnumSet<object>as 属性があります。out.write....()このタイプにどれを使用する必要があるかわかりませんか?
writeToParcel
EnumSet<object>
out.write....()
EnumSet が実装されているSerializableため、使用できますout.writeSerializable(enumset)
Serializable
out.writeSerializable(enumset)