Instant isAfter(Instant otherInstant) example

Description

Instant isAfter(Instant otherInstant) checks if this instant is after the specified instant.

The comparison is based on the time-line position of the instants.

Syntax

isAfter has the following syntax.


public boolean isAfter(Instant otherInstant)

Example

The following example shows how to use isAfter.


import java.time.Instant;
//from   w  w  w.j  a  v a2 s  .c  o m
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.isAfter(Instant.now()));
 
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset