Java Date Time - Instant isBefore(Instant otherInstant) example








Instant isBefore(Instant otherInstant) checks if this instant is before the specified instant.

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

Syntax

isBefore has the following syntax.

public boolean isBefore(Instant otherInstant)

Example

The following example shows how to use isBefore.

import java.time.Instant;

public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.isBefore(Instant.now()));
 
  }
}

The code above generates the following result.