Friday, September 5, 2025
HomeLanguagesJavaLocalDate getDayOfWeek() method in Java

LocalDate getDayOfWeek() method in Java

The getDayOfWeek() method of LocalDate class in Java gets the day-of-week field, which is an enum DayOfWeek.

Syntax:

public DayOfWeek getDayOfWeek()

Parameter: This method does not accepts any parameter.

Return Value: The function returns the day of the week and not null.

Below programs illustrate the getDayOfWeek() method of LocalDate in Java:

Program 1:




// Program to illustrate the getDayOfWeek() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day
        System.out.println(dt.getDayOfWeek());
    }
}


Output:

TUESDAY

Program 2:




// Program to illustrate the getDayOfWeek() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-01-09");
  
        // Prints the day
        System.out.println(dt.getDayOfWeek());
    }
}


Output:

TUESDAY

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfWeek()

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS