Java.util.Calendar.setMinimalDaysInFirstWeek() Method
Advertisements
Description
The java.util.Calendar.setMinimalDaysInFirstWeek(int) method sets how many minimal days required in the first week of the year are required.
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: 4 Minimal Days in Week: 5