El método getValue() de java.time.DayOfWeek es una función integrada en Java que devuelve el valor entero asignado a los 7 días de la semana, es decir, lunes, martes, miércoles, jueves, viernes, sábado y domingo. El valor int sigue el estándar ISO-8601, de 1 (lunes) a 7 (domingo).
Declaración del método:
public int getValue()
Sintaxis:
int val = DayOfWeekObject.getValue()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: La función devuelve el valor int del día de la semana, por ejemplo, 1 para el lunes, 2 para el martes, etc.
El siguiente programa ilustra el método anterior:
Programa 1:
// Java Program Demonstrate getValue() // method of DayOfWeek import java.time.*; import java.time.DayOfWeek; class DayOfWeekExample { public static void main(String[] args) { // Set a local date whose day is found LocalDate localDate = LocalDate.of(1947, Month.AUGUST, 15); // Find the day from the local date DayOfWeek dayOfWeek = DayOfWeek.from(localDate); // Printing the day of the week // and its Int value System.out.println("Day of the Week on" + " 15th August 1947 - " + dayOfWeek.name()); int val = dayOfWeek.getValue(); System.out.println("Int Value of " + dayOfWeek.name() + " - " + val); } }
Day of the Week on 15th August 1947 - FRIDAY Int Value of FRIDAY - 5
Programa 2:
// Java Program Demonstrate getValue() // method of DayOfWeek import java.time.*; import java.time.DayOfWeek; class DayOfWeekExample { public static void main(String[] args) { // Set a local date whose day is found LocalDate localDate = LocalDate.of(2015, Month.JULY, 13); // Find the day from the local date DayOfWeek dayOfWeek = DayOfWeek.from(localDate); // Printing the day of the week // and its Int value System.out.println("Day of the Week on" + " 13th July 2015 - " + dayOfWeek.name()); int val = dayOfWeek.getValue(); System.out.println("Int Value of " + dayOfWeek.name() + " - " + val); } }
Day of the Week on 13th July 2015 - MONDAY Int Value of MONDAY - 1
Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/DayOfWeek.html#getValue–
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA