Skip to content

Instantly share code, notes, and snippets.

@VibeMage
Last active January 17, 2020 03:36
Show Gist options
  • Select an option

  • Save VibeMage/33bdb0fc79361ab18d620d94fe7d4ab7 to your computer and use it in GitHub Desktop.

Select an option

Save VibeMage/33bdb0fc79361ab18d620d94fe7d4ab7 to your computer and use it in GitHub Desktop.
[@IntDef replace enum]#Android
@IntDef({Status.IDLE, Status.PROCESSING, Status.DONE, Status.CANCELLED})
@Retention(RetentionPolicy.SOURCE)
@interface Status {
int IDLE = 0;
int PROCESSING = 1;
int DONE = 2;
int CANCELLED = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment