Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

LocalDateTime getMonth() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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()


My Personal Notes arrow_drop_up
Last Updated : 29 Nov, 2018
Like Article
Save Article
Similar Reads
Related Tutorials