Friday, January 10, 2025
Google search engine
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

Most Popular

Recent Comments