El método setLenient(boolean leniency) en la clase DateFormat se usa para especificar si la interpretación de la fecha y la hora de este objeto DateFormat 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 del objeto DateFormat. 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 setLenient() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // setLenient() 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()); // Changing the leniency DFormat.setLenient(false); // Displaying the modified leniency System.out.println("New Leniency: " + DFormat.isLenient()); } }
Object: java.text.SimpleDateFormat@7945516e Mar 28, 2019 6:03:48 PM Leniency: true New Leniency: false
Ejemplo 2:
// Java code to illustrate // setLenient() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // 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()); // Changing the leniency DFormat.setLenient(false); // Displaying the modified leniency System.out.println("New Leniency: " + DFormat.isLenient()); } }
Object: java.text.SimpleDateFormat@ce9bf0a5 Mar 28, 2019 Leniency: true New Leniency: false
Referencia: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#setLenient(booleano)
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