Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.myitcareercoach;
  2.  
  3. public enum GolfClubs {
  4. PUTTER, WEDGE, DRIVER, HYBRID;
  5.  
  6. public static void main(String[] args) {
  7. // Values
  8. for (GolfClubs club : GolfClubs.values()) {
  9. System.out.println(club);
  10. }
  11. //Ordinal
  12. System.out.println(GolfClubs.DRIVER.ordinal());
  13. //ValueOf
  14. GolfClubs driver = GolfClubs.valueOf("DRIVER");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement