Open In App

OffsetDateTime getMonth() method in Java with examples

Improve
Improve
Like Article
Like
Save
Share
Report

The getMonth() method of OffsetDateTime class in Java gets the month-of-year field using the Month enum.

Syntax :

public Month getMonth()

Parameter : This method accepts does not accepts any parameter.

Return Value: It returns the month-of-year and not null..

Below programs illustrate the getMonth() method:

Program 1 :




// Java program to demonstrate the getMonth() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00");
  
        // Prints the month of given date
        System.out.println("Month: " + date.getMonth());
    }
}


Output:

Month: DECEMBER

Program 2 :




// Java program to demonstrate the getMonth() method
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2016-11-31T12:30:30+05:00");
  
        // Prints the month of given date
        System.out.println("Month: " + date.getMonth());
    }
}


Output:

Month: NOVEMBER

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getMonth–



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