El método isAfter() de la interfaz ChronoLocalDateTime en Java se utiliza para comprobar si la fecha, pasada como parámetro, es posterior a esta instancia de ChronoLocalDateTime o no. Devuelve un valor booleano que muestra lo mismo.
Sintaxis:
default boolean isAfter(ChronoLocalDateTime otherDate)
Parámetro: este método acepta un parámetro otherDate que especifica la otra fecha y hora que se comparará con este ChronoLocalDateTime. No debe ser nulo.
Devoluciones: la función devuelve un valor booleano que muestra si esta fecha y hora es posterior a la fecha y hora especificada.
Los siguientes programas ilustran el método ChronoLocalDateTime.isAfter():
Programa 1:
// Program to illustrate the isAfter() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDateTime dt1 = LocalDateTime.parse("2018-11-03T12:45:30"); // Prints the date System.out.println(dt1); // Parses the date ChronoLocalDateTime dt2 = LocalDateTime.parse("2016-12-04T12:45:30"); // Prints the date System.out.println(dt2); // Compares both dates System.out.println(dt1.isAfter(dt2)); } }
Producción:
2018-11-03T12:45:30 2016-12-04T12:45:30 true
Programa 2:
// Program to illustrate the isAfter() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDateTime dt1 = LocalDateTime.parse("2018-11-03T12:45:30"); // Prints the date System.out.println(dt1); // Parses the date ChronoLocalDateTime dt2 = LocalDateTime.parse("2019-12-04T12:45:30"); // Prints the date System.out.println(dt2); // Compares both dates System.out.println(dt1.isAfter(dt2)); } }
Producción:
2018-11-03T12:45:30 2019-12-04T12:45:30 false