Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public DyeColor getColor(DyeColor c) {
  2. switch (c) {
  3. case RED:
  4. return DyeColor.ORANGE;
  5. case ORANGE:
  6. return DyeColor.YELLOW;
  7. case YELLOW:
  8. return DyeColor.LIME;
  9. case LIME:
  10. return DyeColor.LIGHT_BLUE;
  11. case LIGHT_BLUE:
  12. return DyeColor.MAGENTA;
  13. case MAGENTA:
  14. return DyeColor.PURPLE;
  15. default:
  16. return DyeColor.PURPLE;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement