El método isBefore() de la clase LocalDateTime en Java comprueba si esta fecha es anterior a la fecha y hora especificada.
Sintaxis:
public boolean isBefore(ChronoLocalDateTime other)
Parámetro: este método acepta un parámetro que es la otra fecha y hora con la que se comparará. No debe ser nulo.
Devuelve: La función devuelve un valor booleano: si esta fecha y hora es anterior a la fecha y hora especificada.
Los siguientes programas ilustran el método LocalDateTime.isBefore():
Programa 1:
Java
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDateTime dt1 = LocalDateTime .parse("2018-11-03T12:45:30"); // Prints the date System.out.println("Date 1: " + dt1); // Parses the date LocalDateTime dt2 = LocalDateTime .parse("2016-12-04T12:45:30"); // Prints the date System.out.println("Date 2: " + dt2); // Compares both dates System.out.println("Is Date 1 before Date 2: " + dt1.isBefore(dt2)); } }
Producción:
Date 1: 2018-11-03T12:45:30 Date 2: 2016-12-04T12:45:30 Is Date 1 before Date 2: false
Programa 2:
Java
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDateTime dt1 = LocalDateTime .parse("2018-11-03T12:45:30"); // Prints the date System.out.println("Date 1: " + dt1); // Parses the date LocalDateTime dt2 = LocalDateTime .parse("2019-12-04T12:45:30"); // Prints the date System.out.println("Date 2: " + dt2); // Compares both dates System.out.println("Is Date 1 before Date 2: " + dt1.isBefore(dt2)); } }
Producción:
Date 1: 2018-11-03T12:45:30 Date 2: 2019-12-04T12:45:30 Is Date 1 before Date 2: true