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.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 = 1Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/EnumDemo_level_Cons_method_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/EnumDemo_level_Cons_method_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4ee0c57df034098ab5ebc06d5a6296fa5950097a/BasicJava/EnumDemo_level_Cons_method_App/?at=master
See also:
No comments:
Post a Comment