Saturday, October 25, 2025
HomeLanguagesJavaWeekFields getFirstDayOfWeek() method in Java with Examples

WeekFields getFirstDayOfWeek() method in Java with Examples

The getFirstDayOfWeek() method of WeekFields class is used to return the first day-of-week as a DayOfWeek enum.For example, the US uses Sunday, while France uses Monday.

Syntax:

public DayOfWeek getFirstDayOfWeek()

Parameters: This method accepts nothing.

Return value: This method returns the first day-of-week, not null.

Below programs illustrate the WeekFields.getFirstDayOfWeek() method:
Program 1:




// Java program to demonstrate
// WeekFields.getFirstDayOfWeek() method
  
import java.time.DayOfWeek;
import java.time.temporal.WeekFields;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(DayOfWeek.MONDAY, 1);
  
        // apply getFirstDayOfWeek()
        DayOfWeek firstDay
            = weekFields.getFirstDayOfWeek();
  
        // print results
        System.out.println("First Day:"
                           + firstDay);
    }
}


Output:

First Day:MONDAY

Program 2:




// Java program to demonstrate
// WeekFields.getFirstDayOfWeek() method
  
import java.time.DayOfWeek;
import java.time.temporal.WeekFields;
import java.util.Locale;
  
public class GFG {
    public static void main(String[] args)
    {
  
        Locale locale = new Locale("EN", "US");
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(locale);
  
        // apply getFirstDayOfWeek()
        DayOfWeek firstDay
            = weekFields.getFirstDayOfWeek();
  
        // print results
        System.out.println("First Day:"
                           + firstDay);
    }
}


Output:

First Day:SUNDAY

References: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/WeekFields.html#getFirstDayOfWeek()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS