Open In App

LocalDateTime getMonthValue() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The getMonthValue() method of LocalDateTime class is used to return the month-of-year field. This method returns the month from LocalDateTime as an int from 1 to 12.

Syntax:

public int getMonthValue()

Parameter: This method does not accept any parameter.

Returns: This method returns integer value which is the month-of-year field and it ranges from 1 to 12.

Below programs illustrate the LocalDateTime.getMonthValue() method:

Program 1:




// Java program to demonstrate
// LocalDateTime.getMonthValue() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2018-10-23T22:29:10");
  
        // get Month value field
        int monthvalue = local.getMonthValue();
  
        // print result
        System.out.println("Month Value: "
                           + monthvalue);
    }
}


Output:

Month Value: 10

Program 2:




// Java program to demonstrate
// LocalDateTime.getMonthValue() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2018-12-13T12:28:13");
  
        // get Month value field
        int monthvalue = local.getMonthValue();
  
        // print result
        System.out.println("Month Value: "
                           + monthvalue);
    }
}


Output:

Month Value: 12

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getMonthValue()



Last Updated : 29 Nov, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads