The java.util.GregorianCalendar.getGreatestMinimum() method is an in-built function in Java which returns the highest minimum value for a calendar field, passed as parameter to the function, of this GregorianCalendar instance. The highest minimum value for any possible time value is defined as the smallest value returned by the get method with the current values of the getFirstDayOfWeek, getMinimalDaysInFirstWeek, getGregorianChange and getTimeZone methods, all taken into consideration.
Syntax:
public int getGreatestMinimum(int calendarfield)
Parameters: This function accepts one mandatory parameter calendarfield of integer type whose highest minimum value will be returned by the function.
Return Value: This method returns an integer which denotes the highest minimum value for the specified calendar field.
Examples:
Input : DAY_OF_MONTH
Output : 1
Input : WEEK_OF_MONTH
Output : 0
Below programs illustrate the working of java.util.GregorianCalendar.getGreatestMaximum() function:
Program 1:
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args) {
GregorianCalendar cal = (GregorianCalendar)
GregorianCalendar.getInstance();
System.out.println( "Current Date and Time : "
+ cal.getTime());
int minm = cal.getGreatestMinimum(
GregorianCalendar.WEEK_OF_MONTH);
System.out.println( "Greatest Minimum for" +
" WEEK_OF_MONTH field :" + minm);
minm = cal.getGreatestMinimum(
GregorianCalendar.DAY_OF_MONTH);
System.out.println( "Greatest Minimum for"
+ " DAY_OF_MONTH field:" + minm);
}
}
|
Output:
Current Date and Time : Wed Aug 01 07:21:14 UTC 2018
Greatest Minimum for WEEK_OF_MONTH field :0
Greatest Minimum for DAY_OF_MONTH field:1
Program 2:
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args) {
GregorianCalendar cal = (GregorianCalendar)
GregorianCalendar.getInstance();
System.out.println( "Current Date and Time : "
+ cal.getTime());
int minm = cal.getGreatestMinimum
(GregorianCalendar.YEAR);
System.out.println( "Greatest Minimum for" +
" YEAR field :" + minm);
minm = cal.getGreatestMinimum(
GregorianCalendar.HOUR_OF_DAY);
System.out.println( "Greatest Minimum for" +
" HOUR_OF_DAY field:" + minm);
}
}
|
Output:
Current Date and Time : Wed Aug 01 07:21:16 UTC 2018
Greatest Minimum for YEAR field :1
Greatest Minimum for HOUR_OF_DAY field:0
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/GregorianCalendar.html#getGreatestMinimum()