Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

ZonedDateTime getMonth() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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()


My Personal Notes arrow_drop_up
Last Updated : 07 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials