El método isLenient() en la clase DateFormat se usa para saber y comprender si el análisis de la fecha y la hora de este objeto DateFormat debe considerarse indulgente o no.
Sintaxis:
public boolean isLenient()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve Verdadero si la interpretación de este Calendario es indulgente o Falso.
Los siguientes programas ilustran el funcionamiento del método isLenient() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // isLenient() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // Initializing the first formatter DateFormat DFormat = DateFormat.getDateTimeInstance(); System.out.println("Object: " + DFormat); // String formatting String str = DFormat.format(new Date()); // Displaying the string time System.out.println(str); System.out.println("Leniency: " + DFormat.isLenient()); } }
Producción:
Object: java.text.SimpleDateFormat@7945516e Mar 28, 2019 4:23:01 AM Leniency: true
Ejemplo 2:
// Java code to illustrate // isLenient() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] argv) { // Initializing the first formatter DateFormat DFormat = DateFormat.getDateInstance(); System.out.println("Object: " + DFormat); // String formatting String str = DFormat.format(new Date()); // Displaying the string time System.out.println(str); System.out.println("Leniency: " + DFormat.isLenient()); } }
Producción:
Object: java.text.SimpleDateFormat@ce9bf0a5 Mar 28, 2019 Leniency: true
Referencia: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.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