devxlogo

Usage of Ordinal in Enum

Usage of Ordinal in Enum

The ordinal() method on the enum returns the constant. In other words, you can assume this to be the same as index and similar to arrays the index starts with zero(0).

Code snippet:

public class EnumOrdinal{   public static void main(String args[])   {      EnumOrdinal enumOrdinal = new EnumOrdinal();      enumOrdinal.proceed();   }      enum Days {      SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY;   }      private void proceed()   {      Days ordinalDay = Days.FRIDAY; //Change this value to one of the values in the enum Days to get the respective ordinal      System.out.println("Ordinal of " + ordinalDay + " is " + ordinalDay.ordinal());   }}/*Expected output: Ordinal of FRIDAY is 5*/
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist