Sunday 7 May 2017

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


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:
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:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment