java.time.Month.getValue() Method Example



Description

The java.time.Month.getValue() method gets the month-of-year int value.

Declaration

Following is the declaration for java.time.Month.getValue() method.

public int getValue()

Return Value

the month-of-year, from 1 (January) to 12 (December).

Example

The following example shows the usage of java.time.Month.getValue() method.

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.FEBRUARY;
      System.out.println(month.getValue());  
   }
}

Let us compile and run the above program, this will produce the following result −

2
Advertisements