The getMonthValue() method of LocalDateTime class is used to return the month-of-year field. This method returns the month from LocalDateTime as an int from 1 to 12.
Syntax:
public int getMonthValue()
Parameter: This method does not accept any parameter.
Returns: This method returns integer value which is the month-of-year field and it ranges from 1 to 12.
Below programs illustrate the LocalDateTime.getMonthValue() method:
Program 1:
// Java program to demonstrate // LocalDateTime.getMonthValue() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalDateTime Object LocalDateTime local = LocalDateTime.parse( "2018-10-23T22:29:10" ); // get Month value field int monthvalue = local.getMonthValue(); // print result System.out.println( "Month Value: " + monthvalue); } } |
Month Value: 10
Program 2:
// Java program to demonstrate // LocalDateTime.getMonthValue() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalDateTime Object LocalDateTime local = LocalDateTime.parse( "2018-12-13T12:28:13" ); // get Month value field int monthvalue = local.getMonthValue(); // print result System.out.println( "Month Value: " + monthvalue); } } |
Month Value: 12
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getMonthValue()