Open In App

OffsetDateTime getMonth() method in Java with examples

Last Updated : 13 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
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
// 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
// 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--

Next Article

Similar Reads