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()); } } |
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()); } } |
Month: NOVEMBER
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getMonth–