Saturday, 10 June 2017

Java Tutorial: Enum in java | Java enum - Level ~ foundjava


Click here to watch in Youtube : 

https://www.youtube.com/watch?v=fd0MHss_ZDs&index=47&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge

Java Tutorial: Enum in java | Java enum - Level 
Level.java
public enum Level
{
    HIGH, MEDIUM, LOW
}
EnumDemo.java
public class EnumDemo
{

    public static void main(String[] args)
    {
        Level level = Level.HIGH;
        System.out.println(level);
    }
}
Output
HIGH
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment