Java GregorianCalendar getMinimum() Method



Description

The Java GregorianCalendar getMinimum(int field) method returns the minimum value for the given calendar field of this GregorianCalendar instance. The minimum value is defined as the smallest value returned by the get method for any possible time value, taking into consideration the current values of the getFirstDayOfWeek, getMinimalDaysInFirstWeek, getGregorianChange and getTimeZone methods.

Declaration

Following is the declaration for java.util.GregorianCalendar.getMinimum() method

public int getMinimum(int field)

Parameters

field − the calendar field

Return Value

This method returns the minimum value for the given calendar field.

Exception

NA

Getting Minimum Year from a Current Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getMinimum() method. We're creating a GregorianCalendar instance of current date. We're printing the minimum possible value of Year.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // get minimum for YEAR
      System.out.println("Minimum:" + cal.getMinimum(GregorianCalendar.YEAR));
   }
}

Output

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

Sat Nov 19 13:48:17 IST 2022
Minimum:1

Getting Minimum Month from a Current Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getMinimum() method. We're creating a GregorianCalendar instance of current date. We're printing the minimum possible value of Month.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // get minimum for Month
      System.out.println("Minimum:" + cal.getMinimum(GregorianCalendar.MONTH));
   }
}

Output

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

Sat Nov 19 13:48:40 IST 2022
Minimum:0

Getting Minimum Day from a Current Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getMinimum() method. We're creating a GregorianCalendar instance of current date. We're printing the minimum possible value of day.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // get minimum for Day
      System.out.println("Minimum:" + cal.getMinimum(GregorianCalendar.DATE));
   }
}

Output

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

Sat Nov 19 13:49:01 IST 2022
Minimum:1
java_util_gregoriancalendar.htm
Advertisements