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:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-11-27" );
System.out.println(dt.getDayOfWeek());
}
}
|
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-01-09" );
System.out.println(dt.getDayOfWeek());
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfWeek()
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Nov, 2018
Like Article
Save Article