In this program, we will create a vehicle enumeration using "enum" inside the class Main. Then we will use an enum constant with a switch case inside the main() method and print the appropriate message.
Program/Source Code:
The source code to demonstrate an enum in the switch case is given below. The given program is compiled and executed successfully.
// Java program to demonstrate an enum
// in switch case
public class Main {
enum Vehicle {
BIKE,
CAR,
BUS
}
public static void main(String[] args) {
String str = "BUS";
switch (Vehicle.valueOf(str)) {
case BIKE:
System.out.println("BIKE is for 2 persons.");
break;
case CAR:
System.out.println("CAR is for 5 persons.");
break;
case BUS:
System.out.println("BUS is for 50 persons.");
break;
default:
System.out.println("Unknown Vehicle.");
break;
}
}
}
In this program, we will create a vehicle enumeration using "enum" inside the class Main. Then we will use an enum constant with a switch case inside the main() method and print the appropriate message.
Program/Source Code:
The source code to demonstrate an enum in the switch case is given below. The given program is compiled and executed successfully.
Output: