Tuesday 9 May 2017

Java Tutorial: Enum in java[Ordinal method of enum - mobile]


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

EnumDemo.java
enum Mobile
{
    Samsung, Nokia, Motorola;
}

public class EnumDemo
{
    public static void main(String args[])
    {
        Mobile mobile = Mobile.Nokia;

        /*
         * Returns the ordinal of this enumeration constant
         * (its position in its enum declaration, where the
         * initial constant is assigned an ordinal of zero).
         */

        int ordinal = mobile.ordinal();
        System.out.println("The ordinal is = " + ordinal);

    }
}
Output
The ordinal is = 1
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/EnumDemo_mobile_ordinal_App.zip?attredirects=0&d=1

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/45d5519a1474198166ac515ccd559cc996bb550c/BasicJava/EnumDemo_mobile_ordinal_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