GregorianCalendar setMinimalDaysInFirstWeek(int) in Java

setMinimalDaysInFirstWeek(int): This method is available in java.util.GregorianCalendar class of Java.

Syntax:

void java.util.Calendar.setMinimalDaysInFirstWeek(int value)

This method takes one argument of type int as its parameter. This method sets the minimal days required in the first week of the year.

Parameters: One parameter is required for this method.

value: the given minimal days required in the first week of the year.

Returns: NA

Exceptions: NA

Approach

Java

import java.util.GregorianCalendar;

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

        GregorianCalendar cal = new GregorianCalendar();
        int value = 5;
        cal.setMinimalDaysInFirstWeek(value);
        System.out.println(cal);
    }
}

Output:

java.util.GregorianCalendar[time=1645157055243,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="Asia/Calcutta",offset=19800000,dstSavings=0,useDaylight=false,transitions=7,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=5,ERA=1,YEAR=2022,MONTH=1,WEEK_OF_YEAR=7,WEEK_OF_MONTH=3,DAY_OF_MONTH=18,DAY_OF_YEAR=49,DAY_OF_WEEK=6,DAY_OF_WEEK_IN_MONTH=3,AM_PM=0,HOUR=9,HOUR_OF_DAY=9,MINUTE=34,SECOND=15,MILLISECOND=243,ZONE_OFFSET=19800000,DST_OFFSET=0]


No comments:

Post a Comment