Created
September 1, 2016 14:36
-
-
Save amitshekhariitbhu/2daf1c65dd97c70c238ee432c532bb04 to your computer and use it in GitHub Desktop.
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
@Target(ElementType.METHOD) | |
@Retention(RetentionPolicy.RUNTIME) | |
@interface Status { | |
public enum Priority {LOW, MEDIUM, HIGH} | |
Priority priority() default Priority.LOW; | |
String author() default “Amit”; | |
int completion() default 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment