ChronoZonedDateTime isAfter() method in Java with Examples Last Updated : 29 May, 2019 Comments Improve Suggest changes Like Article Like Report The isAfter() method of ChronoZonedDateTime interface in Java is used to check if the date, passed as the parameter, is after this ChronoZonedDateTime instance or not. It returns a boolean value showing the same. Syntax: public boolean isAfter(ChronoZonedDateTime otherDate) Parameter: This method accepts a parameter otherDate which specifies the other date-time to be compared to this ChronoZonedDateTime. It should not be null. Returns: The function returns boolean value showing if this date-time is after the specified date-time. Below programs illustrate the ChronoZonedDateTime.isAfter() method: Program 1: Java // 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 ChronoZonedDateTime dt1 = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); // Prints the date System.out.println(dt1); // Parses the date ChronoZonedDateTime dt2 = ZonedDateTime.parse( "2018-10-06T19:21:12.123+05:30[Asia/Calcutta]"); // Prints the date System.out.println(dt2); // Compares both dates System.out.println(dt1.isAfter(dt2)); } } Output: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] 2018-10-06T19:21:12.123+05:30[Asia/Calcutta] true Program 2: Java // 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 ChronoZonedDateTime dt1 = ZonedDateTime.parse( "2018-10-06T19:21:12.123+05:30[Asia/Calcutta]"); // Prints the date System.out.println(dt1); // Parses the date ChronoZonedDateTime dt2 = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); // Prints the date System.out.println(dt2); // Compares both dates System.out.println(dt1.isAfter(dt2)); } } Output: 2018-10-06T19:21:12.123+05:30[Asia/Calcutta] 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] false Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#isAfter-java.time.chrono.ChronoZonedDateTime- Comment More infoAdvertise with us Next Article ChronoZonedDateTime isAfter() method in Java with Examples S ShubhamMaurya3 Follow Improve Article Tags : Misc Java Java-Functions Java-ChronoZonedDateTime Java-Time-Chrono package +1 More Practice Tags : JavaMisc Similar Reads ChronoZonedDateTime isBefore() method in Java with Examples The isBefore() method of ChronoZonedDateTime interface in Java is used to check if the date, passed as the parameter, is before this ChronoZonedDateTime instance or not. It returns a boolean value showing the same. Syntax: public boolean isBefore(ChronoZonedDateTime otherDate) Parameter: This method 2 min read ChronoLocalDateTime isAfter() method in Java with Examples The isAfter() method of ChronoLocalDateTime interface in Java is used to check if the date, passed as the parameter, is after this ChronoLocalDateTime instance or not. It returns a boolean value showing the same. Syntax: default boolean isAfter(ChronoLocalDateTime otherDate) Parameter: This method a 2 min read ChronoZonedDateTime isEqual() method in Java with Examples The isEqual() method of ChronoZonedDateTime interface in Java is used to check if the date, passed as the parameter, is equal to this ChronoZonedDateTime instance or not. It returns a boolean value showing the same. Syntax: default boolean isEqual(ChronoZonedDateTime otherDate) Parameter: This metho 2 min read ChronoLocalDate isAfter() method in Java with Examples The isAfter() method of ChronoLocalDate interface in Java checks if this date is after the specified date and returns a boolean value stating the same. Syntax: public boolean isAfter(ChronoLocalDate date2) Parameter: This method accept a single mandatory parameter date2 the other date to compare to 1 min read ChronoZonedDateTime get() method in Java with Examples The get() method of ChronoZonedDateTime interface in Java is used to get the value of the specified field passed as input from this ChronoZonedDateTime as an integer.This method queries this ChronoZonedDateTime for the value of the field and the returned value will always be within the valid range o 2 min read Like