Click here to watch in Youtube :
https://www.youtube.com/watch?v=CdfYeifswq8&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
![]() |
Java Tutorial: Enum in java [How to use enum in if statement - Level] |
public enum Level
{
HIGH, MEDIUM, LOW
}
EnumDemo.javapublic class EnumDemo
{
public static void main(String[] args)
{
Level level = Level.MEDIUM;
if (level == Level.HIGH)
{
System.out.println("This is high voltage");
}
else if (level == Level.MEDIUM)
{
System.out.println("This is meidum voltage");
}
else if (level == Level.LOW)
{
System.out.println("This is low voltage");
}
}
}
OutputThis is meidum voltage
Click the below link to download the code:
No comments:
Post a Comment