Skip to content

Instantly share code, notes, and snippets.

@jddeep
Created May 9, 2019 10:27
Show Gist options
  • Save jddeep/34ae38f19d48153f38822849844ffd59 to your computer and use it in GitHub Desktop.
Save jddeep/34ae38f19d48153f38822849844ffd59 to your computer and use it in GitHub Desktop.
public enum Priority {
LOW("low", 2, Color.rgb(204, 214, 0)),
MEDIUM("medium", 1, Color.rgb(255, 170, 0)),
HIGH("high", 0, Color.rgb(255, 0, 0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment