El método isLenient() en la clase Calendario se usa para saber y comprender si la interpretación de la fecha y la hora de este Calendario debe considerarse indulgente o no.
Sintaxis:
public boolean isLenient()
Parámetros: El método no toma ningún parámetro.
Valor de retorno: el método devuelve True si la interpretación de este Calendario es indulgente o False .
Los siguientes programas ilustran el funcionamiento del método isLenient() de la clase Calendario:
Ejemplo 1:
Java
// 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(); // Displaying the leniency System.out.println("Calendar is" + " lenient: " + leniency); } }
Producción
Current Calendar: Tue Nov 30 10:25:50 UTC 2021 Calendar is lenient: true
Ejemplo 2:
Java
// 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); } }
Producción
Current Calendar: Tue Nov 30 10:26:18 UTC 2021 Calendar is lenient: false
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#isLenient–
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