Saturday, 10 June 2017

Java Tutorial: Enum in java [How to use enum in if statement - Level] ~ foundjava


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] 
Level.java
public enum Level
{
    HIGH, MEDIUM, LOW
}
EnumDemo.java
public 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");
        }
    }
}
Output
This is meidum voltage
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment