| // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| public static void main(String... args) { |
| for (Days value : Days.values()) { |
| switchWithDefault(value); |
| for (Colors color : Colors.values()) { |
| private static void switchOnColors(Colors color) { |
| System.out.println(color.toString()); |
| System.out.println("not really"); |
| System.out.println("sooo green"); |
| System.out.println("colorful"); |
| private static void switchWithDefault(Days day) { |
| System.out.println("3 or 5"); |
| System.out.println("other"); |
| private static void switchFull(Days day) { |
| System.out.println("1, 3 or 4"); |
| System.out.println("2 or 5"); |
| System.out.println("other"); |