String time = switch (weekday) { case MONDAY, FRIDAY -> "10:00-18:00"; case TUESDAY, THURSDAY -> "10:00-14:00"; default -> "holiday"; };
You can write like this
Recommended Posts