El método de valores() de java.time.DayOfWeek es una función incorporada en Java que devuelve una array que contiene los días de la semana, por ejemplo, LUNES, MARTES, etc., en el orden en que se declaran.
Declaración del método:
public static DayOfWeek[] values()
Sintaxis:
DayOfWeek week[] = DayOfWeek.values()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: la función devuelve una array que contiene los días de la semana en el orden en que se declaran.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java Program Demonstrate values() // method of DayOfWeek import java.time.DayOfWeek; class DayOfWeekExample { public static void main(String[] args) { // Initializing an array containing // all the days of the Week DayOfWeek week[] = DayOfWeek.values(); // Printing the days of the Week for (DayOfWeek c : week) System.out.println(c); } }
Producción:
MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
Programa 2:
// Java Program Demonstrate values() // method of DayOfWeek import java.time.DayOfWeek; class DayOfWeekExample { public static void main(String[] args) { // Initializing an array containing // all the days of the Week DayOfWeek week[] = DayOfWeek.values(); // Printing the days of the Week for (int i = 0; i < week.length; i++) System.out.println(week[i] + " has int value - " + (i + 1)); } }
Producción:
MONDAY has int value - 1 TUESDAY has int value - 2 WEDNESDAY has int value - 3 THURSDAY has int value - 4 FRIDAY has int value - 5 SATURDAY has int value - 6 SUNDAY has int value - 7
Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/DayOfWeek.html#values–
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