Open In App
Related Articles

Month getValue() method in Java

Improve Article
Improve
Save Article
Save
Like Article
Like

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)
    {
        // Create a month instance
        Month month = Month.MARCH;
  
        // Get the value of month-of-year as int
        System.out.println(month.getValue());
    }
}


Output:

3

Program 2:




import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
  
class monthEnum {
    public static void main(String[] args)
    {
        // Create a month instance
        Month month = Month.DECEMBER;
  
        // Get the value of month-of-year as int
        System.out.println(month.getValue());
    }
}


Output:

12

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!

Last Updated : 22 Mar, 2019
Like Article
Save Article
Similar Reads
Related Tutorials