I have this enum like this
enum Status {READY, DISCONNECTED, RECEIVING, ... more }
I want to send a value of this enum over to another thread via a Bundle.
The other thread would like to extract enum value from the Bundle ,
How can this be done , smartly ?
Bundle createBundle(Status status);
and
Status getStatus(Bundle b);
Thanks,