Open In App

ZonedDateTime getMonth() method in Java with Examples

Last Updated : 07 Dec, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The getMonth() method of a ZonedDateTime class is used to get month-of-year field using the Month enum from this ZonedDateTime. If you need access to the primitive int value then the enum provides the int value.

Syntax:

public Month getMonth()

Parameters: This method does not take any parameters.

Return value: This method returns an enum Month representing the month-of-year.

Below programs illustrate the getMonth() method:

Program 1:




// Java program to demonstrate
// ZonedDateTime.getMonth() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // get month field
        Month value = zoneddatetime.getMonth();
  
        // print result
        System.out.println("month:" + value);
    }
}


Output:

month:DECEMBER

Program 2:




// Java program to demonstrate
// ZonedDateTime.getMonth() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-10-25T23:12:38.543+02:00[Europe/Paris]");
  
        // get month field
        Month value = zoneddatetime.getMonth();
  
        // print result
        System.out.println("month:" + value);
    }
}


Output:

month:OCTOBER

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



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads