Skip to content

Instantly share code, notes, and snippets.

@amitshekhariitbhu
Created September 1, 2016 14:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amitshekhariitbhu/2daf1c65dd97c70c238ee432c532bb04 to your computer and use it in GitHub Desktop.
Save amitshekhariitbhu/2daf1c65dd97c70c238ee432c532bb04 to your computer and use it in GitHub Desktop.
@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