Created
October 9, 2021 12:48
-
-
Save nowshad-hasan/64d2255cccb2ad36f9f6dbb34bf293b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static void getDayStatus(WeekDay day) { | |
switch(day) { | |
case SUNDAY: | |
case MONDAY: | |
case TUESDAY: | |
case WEDNESDAY: | |
case THURSDAY: | |
System.out.println("On day"); | |
break; | |
case FRIDAY: | |
case SATURDAY: | |
System.out.println("Off day"); | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment