Java.util.Calendar.setMinimal DaysInFirstWeek() Method



Description

The java.util.Calendar.setMinimalDaysInFirstWeek(int) method sets how many minimal days required in the first week of the year.

Declaration

Following is the declaration for java.util.Calendar.setMinimalDaysInFirstWeek() method

public void setMinimalDaysInFirstWeek(int value)

Parameters

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

Return Value

This method does not return a value.

Exception

NA

Example

The following example shows the usage of java.util.calendar.setMinimalDaysInFirstWeek() method.

package com.tutorialspoint;

import java.util.*;

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

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // get what is the minimal days required in the first week
      int min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);

      // set the minimal days required in the first week
      cal.setMinimalDaysInFirstWeek(2);

      // print the result
      min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);
   }
}

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

Minimal Days in Week: 1
Minimal Days in Week: 2
java_util_calendar.htm
Advertisements