Last active
January 17, 2020 03:36
-
-
Save VibeMage/33bdb0fc79361ab18d620d94fe7d4ab7 to your computer and use it in GitHub Desktop.
[@IntDef replace enum]#Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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