The getMonth() method of LocalDate class in Java gets the month-of-year field using the Month enum.
Syntax:
public Month getMonth()
Parameter: This method does not accepts any parameter.
Return Value: The function returns the month of the year.
Below programs illustrate the getMonth() method of LocalDate in Java:
Program 1:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-11-27" );
System.out.println(dt.getMonth());
}
}
|
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-01-02" );
System.out.println(dt.getMonth());
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getMonth()