El método getDayOfWeek() de la clase LocalDate en Java obtiene el campo del día de la semana, que es una enumeración DayOfWeek.
Sintaxis :
public DayOfWeek getDayOfWeek()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto : La función devuelve el día de la semana y no nulo.
Los siguientes programas ilustran el método getDayOfWeek() de LocalDate en Java:
Programa 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()); } }
Producción:
TUESDAY
Programa 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()); } }
Producción:
TUESDAY
Referencia : https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfWeek()