The getValue() method is a built-in method of the Month ENUM which is used to get the value of the month-of-year from this Month instance as an integer.
The value returned by this method is in the range of 1-12, representing months from January to December.
Syntax:
public int getValue()
Parameters: This method does not accepts any parameters.
Return Value: This method returns the value of month-of-year from this Month instance as an integer.
Below programs illustrate the above method:
Program 1:
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
Month month = Month.MARCH;
System.out.println(month.getValue());
}
}
|
Program 2:
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
Month month = Month.DECEMBER;
System.out.println(month.getValue());
}
}
|
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#getValue–
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!