Friday, July 24, 2026
HomeLanguagesJavaOffsetDateTime getMonth() method in Java with examples

OffsetDateTime getMonth() method in Java with examples

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–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS