OffsetDateTime isAfter() method in Java with examples
The isAfter() method of OffsetDateTime class in Java checks checks if this date is after the specified date-time and returns true if it is.
Syntax:
public boolean isAfter(OffsetDateTime other)
Parameter: This method accepts a single parameter other which checks if this date-time is after the another date-time.
Return Value: It returns true if this is after the other date-time, else it returns false.
Below programs illustrate the isAfter() method:
Program 1:
// Java program to demonstrate the isAfter() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00" ); // Parses the date2 OffsetDateTime date2 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00" ); // Prints both dates System.out.println( "Date1: " + date1); System.out.println( "Date2: " + date2); // Compare both System.out.println( "Is Date1 after Date2? " + date1.isAfter(date2)); } } |
Date1: 2018-12-12T13:30:30+05:00 Date2: 2018-12-12T13:30:30+05:00 Is Date1 after Date2? false
Program 2:
// Java program to demonstrate the isAfter() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00" ); // Parses the date2 OffsetDateTime date2 = OffsetDateTime .parse( "2015-12-12T13:30:30+05:00" ); // Prints both dates System.out.println( "Date1: " + date1); System.out.println( "Date2: " + date2); // Compare both System.out.println( "Is Date1 after Date2? " + date1.isAfter(date2)); } } |
Date1: 2018-12-12T13:30:30+05:00 Date2: 2015-12-12T13:30:30+05:00 Is Date1 after Date2? true
Recommended Posts:
- LocalTime isAfter() method in Java with Examples
- ChronoLocalDateTime isAfter() method in Java with Examples
- ChronoZonedDateTime isAfter() method in Java with Examples
- YearMonth isAfter() method in Java with Examples
- ChronoLocalDate isAfter() method in Java with Examples
- OffsetTime isAfter() method in Java with examples
- MonthDay isAfter() Method in Java with Examples
- LocalDate isAfter() method in Java with Examples
- LocalDateTime isAfter() method in Java with Examples
- Year isAfter() method in Java with Examples
- Instant isAfter() method in Java with Examples
- OffsetDateTime with() Method in Java with Examples
- OffsetDateTime until() Method in Java with Examples
- OffsetDateTime from() method in Java with examples
- OffsetDateTime get() method in Java with examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.