java.time.Month.maxLength() Method Example



Description

The java.time.Month.maxLength() method gets the maximum length of this month in days.

Declaration

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

public int maxLength()

Return Value

the maximum length of this month in days, from 29 to 31.

Example

The following example shows the usage of java.time.Month.maxLength() 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.maxLength());  
   }
}

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

29
Advertisements