Exemple de méthode java.time.Instant.isAfter ()

La description

le java.time.Instant.isAfter(Instant otherInstant) La méthode vérifie si cet instant est après l'instant spécifié.

Déclaration

Voici la déclaration pour java.time.Instant.isAfter(Instant otherInstant) méthode.

public boolean isAfter(Instant otherInstant)

Paramètres

otherInstant - l'autre instant auquel comparer, non nul.

Valeur de retour

true si cet instant est après l'instant spécifié.

Exceptions

NullPointerException - si otherInstant est nul.

Exemple

L'exemple suivant montre l'utilisation de la méthode java.time.Instant.isAfter (Instant otherInstant).

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println("Instant #1: " + instant);  

      Instant instant1 = Instant.parse("2017-03-03T10:37:30.00Z");
      System.out.println("Instant #2: " + instant1);  

      boolean result = instant.isAfter(instant1);
      System.out.println(result ? "Instant #1 is after Instant #2."
         :"Instant #1 is not after as Instant #2.");  
   }
}

Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -

Instant #1: 2017-02-03T10:37:30Z
Instant #2: 2017-03-03T10:37:30Z
Instant #1 is not after as Instant #2.