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] |
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.javapublic class EnumDemo
{
public static void main(String[] args)
{
Level[] levelArray = Level.values();
for (Level level : levelArray)
{
System.out.println(level + " = " + level.getLevelCode());
}
}
}
OutputHIGH = 3
MEDIUM = 2
LOW = 1
Click the below link to download the code:
No comments:
Post a Comment