El método setLenient(boolean leniency ) en la clase Calendar se usa para especificar si la interpretación de la fecha y la hora debe ser indulgente o no.
Sintaxis:
public void setLenient(boolean leniency)
Parámetros: El método toma una indulgencia de parámetro del tipo booleano que se refiere al modo del calendario. El valor booleano true activa el modo de clemencia y false lo desactiva.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método setFirstDayOfWeek() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // setLenient() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating a calendar object Calendar calndr = Calendar.getInstance(); // Displaying the current // mood of leniency boolean value = calndr.isLenient(); System.out.println("Is the" + " Calendar lenient? " + value); // Changing the leniency calndr.setLenient(false); // Displaying the result System.out.println("The altered" + " Leniency: " + calndr.isLenient()); } }
Is the Calendar lenient? true The altered Leniency: false
Ejemplo 2:
// Java code to illustrate // isLenient() method import java.util.*; public class CalendarDemo { public static void main(String args[]) { // Creating a calendar object Calendar calndr = Calendar.getInstance(); // Displaying the calendar System.out.println("Current Calendar: " + calndr.getTime()); // Checking the leniency boolean leniency = calndr.isLenient(); calndr.setLenient(false); leniency = calndr.isLenient(); // Displaying the leniency System.out.println("Calendar is" + " lenient? " + leniency); // Checking the leniency calndr.setLenient(true); leniency = calndr.isLenient(); // Displaying the leniency System.out.println("Calendar is" + " lenient: " + leniency); } }
Current Calendar: Thu Feb 21 11:00:50 UTC 2019 Calendar is lenient? false Calendar is lenient: true
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#setLenient-boolean-
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA