Sunday 7 May 2017

Java Tutorial: Enum in java [How to get all values of Java enum -Level]


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

Level.java
public enum Level
{
    HIGH, MEDIUM, LOW
}
EnumDemo.java
public class EnumDemo
{

    public static void main(String[] args)
    {
        /*
         * We can obtain an array of all the possible values
         * of a Java enum type by calling its static
         * values() method.
         * 
         * All enum types get a static values() method
         * automatically by the Java compiler.
         * 
         * Notice the output how the names of the constants
         * themselves are printed out. This is one area
         * where Java enums are different than static final
         * constants.
         */
        
        Level[] levelArray = Level.values();
        
        for (Level level : levelArray)
        {
            System.out.println(level);
        }
    }
}
Output
HIGH
MEDIUM
LOW
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/EnumDemo_Level_values_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/EnumDemo_Level_values_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4ee0c57df034098ab5ebc06d5a6296fa5950097a/BasicJava/EnumDemo_Level_values_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