LocalDateTime getMonth() method in Java with Examples
The getMonth() method of an LocalDateTime class is used to return month-of-year field. This field is returned using the Month enum. The enum can provide the primitive int value.
Syntax:
public Month getMonth()
Parameter: This method does not accept any parameter.
Returns: This method returns the enum Month for the month of this LocalDateTime.
Below programs illustrate the LocalDateTime.getMonth() method:
Program 1:
// Java program to demonstrate // LocalDateTime.getMonth() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalDateTime Object LocalDateTime local = LocalDateTime.parse( "2007-12-02T22:48:29" ); // get Month enum value field Month month = local.getMonth(); // print result System.out.println( "Month: " + month); } } |
Output:
Month: DECEMBER
Program 2:
// Java program to demonstrate // LocalDateTime.getMonth() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalDateTime Object LocalDateTime local = LocalDateTime.parse( "2017-07-22T09:32:42" ); // get Month enum value field Month month = local.getMonth(); // print result System.out.println( "Month: " + month); } } |
Output:
Month: JULY
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getMonth()
Please Login to comment...