Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class EnumSeason {
  2.  
  3. public EnumSeason(Season season) {
  4. System.out.println("Season :" + season);
  5. }
  6.  
  7. public enum Season {
  8. WINTER, SPRING, SUMMER, FALL
  9. }
  10.  
  11. public static void main(String[] args) {
  12. EnumSeason enumSeason = new EnumSeason(Season.SPRING);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement