Saturday, 10 June 2017

Java Tutorial: Enum in java[How to define a constructor and method in enum - Level] ~ foundjava


Click here to watch in Youtube :
https://www.youtube.com/watch?v=2FNL9YVDiVs&list=UUhwKlOVR041tngjerWxVccw 

Click the below Image to Enlarge
Java Tutorial: Enum in java[How to define a constructor and method in enum - Level] 
Level.java
public enum Level
{
    HIGH(3), // calls constructor with value 3
    MEDIUM(2), // calls constructor with value 2
    LOW(1);// calls constructor with value 1

    private final int levelCode;

    private Level(int levelCode)
    {
        this.levelCode = levelCode;
    }

    public int getLevelCode()
    {
        return this.levelCode;
    }
}
EnumDemo.java
public class EnumDemo
{

    public static void main(String[] args)
    {
    
        Level[] levelArray = Level.values();
        for (Level level : levelArray)
        {
            System.out.println(level + " = " + level.getLevelCode());
        }
    }
}
Output
HIGH = 3
MEDIUM = 2
LOW = 1
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment